/* ==========================================================================
   Nuthin But Dawgs LLC - Main Stylesheet
   Brand Colors: Bulldog Red #BA0C2F, Black #000000, White #FFFFFF, Gray #F2F2F2
   Fonts: Montserrat (headings), Inter (body)
   ========================================================================== */

:root {
    --bulldog-red: #BA0C2F;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F2F2F2;
    --dark-gray: #333333;
    --light-gray: #E5E5E5;
    --red-dark: #8A0A23;
    --red-hover: #D40D36;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.large-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border-radius: 0;
}

.btn-primary {
    background: var(--bulldog-red);
    color: var(--white);
    border-color: var(--bulldog-red);
}

.btn-primary:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(186, 12, 47, 0.3);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-secondary:hover {
    background: var(--dark-gray);
    border-color: var(--dark-gray);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--black);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 4px solid var(--bulldog-red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1.5px;
}

.header-cta .btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--bulldog-red);
    padding: 10px 24px;
    font-size: 0.813rem;
}

.header-cta .btn:hover {
    background: var(--bulldog-red);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bulldog-red);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    border-color: var(--bulldog-red);
    background: rgba(186, 12, 47, 0.1);
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle:hover span {
    background: var(--bulldog-red);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--bulldog-red);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--bulldog-red);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 100%);
    overflow: hidden;
    margin-top: 80px;
}

/* Athletic stripe pattern (like carousel) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--bulldog-red) 0%,
        var(--bulldog-red) 25%,
        transparent 25%,
        transparent 50%,
        var(--bulldog-red) 50%,
        var(--bulldog-red) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 40px 8px;
    opacity: 0.4;
    z-index: 3;
    animation: stripeSlide 20s linear infinite;
}

@keyframes stripeSlide {
    from { background-position: 0 0; }
    to { background-position: 40px 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-crest {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(186, 12, 47, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: crestPulse 8s ease-in-out infinite;
}

@keyframes crestPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.hero-logo {
    margin-bottom: 40px;
    animation: heroLogoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    padding: 50px;
    background: radial-gradient(ellipse at center, rgba(186, 12, 47, 0.3) 0%, rgba(186, 12, 47, 0.2) 40%, transparent 70%);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border: 2px solid rgba(186, 12, 47, 0.2);
    box-shadow: 
        0 10px 40px rgba(186, 12, 47, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes heroLogoEntrance {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo-image {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 8px 30px rgba(186, 12, 47, 0.6)) brightness(1.15);
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.hero-headline {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(186, 12, 47, 0.4);
    animation: heroTextEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    position: relative;
}

.hero-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--bulldog-red), transparent);
    border-radius: 2px;
    animation: fadeIn 1s ease 0.8s both;
}

@keyframes heroTextEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.hero-subhead {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeIn 1s ease 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
}

.hero-ctas .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-ctas .btn-primary {
    box-shadow: 
        0 4px 15px rgba(186, 12, 47, 0.4),
        0 0 0 2px rgba(186, 12, 47, 0.2);
}

.hero-ctas .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(186, 12, 47, 0.5),
        0 0 0 3px rgba(186, 12, 47, 0.3),
        0 0 30px rgba(186, 12, 47, 0.3);
}

.hero-ctas .btn-ghost:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--bulldog-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 0.9s both;
    text-shadow: 0 2px 10px rgba(186, 12, 47, 0.5);
    position: relative;
}

.hero-tagline::before {
    content: '•';
    margin-right: 12px;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero-tagline::after {
    content: '•';
    margin-left: 12px;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    animation: fadeIn 1s ease 1.2s both;
    cursor: pointer;
}

.scroll-text {
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 2rem;
    animation: scrollBounce 2s ease-in-out infinite;
    color: var(--bulldog-red);
    text-shadow: 0 2px 10px rgba(186, 12, 47, 0.5);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-indicator:hover .scroll-arrow {
    animation-duration: 1s;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
    padding: 100px 0;
}

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

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

.section-title {
    margin-bottom: 16px;
    color: var(--black);
}

.section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================================================
   Problem Section
   ========================================================================== */

.problem {
    background: var(--gray);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pain-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-left: 4px solid var(--bulldog-red);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--black);
}

.pain-card p {
    color: var(--dark-gray);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

/* ==========================================================================
   Services Section - CAROUSEL-LEVEL QUALITY
   Premium animations, 3-layer shadows, 3D effects, red branding
   ========================================================================== */

.services {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(250, 250, 250, 0.8) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(186, 12, 47, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(186, 12, 47, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced section header */
.services .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.services .section-title {
    position: relative;
    padding-bottom: 20px;
}

/* Premium red underline for section title */
.services .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--bulldog-red) 20%,
        var(--bulldog-red) 80%,
        transparent 100%
    );
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(186, 12, 47, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Premium service cards with 3-layer shadow system */
.service-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(252, 252, 252, 1) 100%
    );
    padding: 40px;
    position: relative;
    border-top: 5px solid var(--bulldog-red);
    border-radius: 0 0 12px 12px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    /* 3-layer shadow: depth + red outline + red glow */
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(186, 12, 47, 0.1),
        0 0 20px rgba(186, 12, 47, 0.05);
    /* Staggered entrance animations */
    opacity: 0;
    transform: translateY(30px);
}

/* Staggered animation delays for each card */
.service-card:nth-child(1) {
    animation: serviceCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.service-card:nth-child(2) {
    animation: serviceCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.service-card:nth-child(3) {
    animation: serviceCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

.service-card:nth-child(4) {
    animation: serviceCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
}

.service-card:nth-child(5) {
    animation: serviceCardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}

@keyframes serviceCardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Subtle diagonal stripe pattern on cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(186, 12, 47, 0.01) 10px,
        rgba(186, 12, 47, 0.01) 20px
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

/* Premium 3D hover effect with perspective */
.service-card:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    border-top-width: 6px;
    /* Enhanced 3-layer shadow on hover */
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 0 2px rgba(186, 12, 47, 0.2),
        0 0 40px rgba(186, 12, 47, 0.15);
    transform: translateY(-10px) perspective(1000px) rotateX(2deg) scale(1.02);
}

/* Premium number badge with gradient and glow */
.service-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(
        135deg,
        var(--bulldog-red) 0%,
        #8a0a25 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.15;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 4px 20px rgba(186, 12, 47, 0.3);
}

.service-card:hover .service-number {
    opacity: 0.25;
    transform: scale(1.1) rotate(-5deg);
    text-shadow: 0 6px 30px rgba(186, 12, 47, 0.5);
}

/* Card title with enhanced styling */
.service-card h3 {
    font-size: 1.625rem;
    margin-bottom: 16px;
    color: var(--black);
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--bulldog-red);
}

/* Card description text */
.service-card > p {
    margin-bottom: 28px;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.6;
    font-size: 1rem;
}

/* Premium feature list */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

/* Staggered feature list animations */
.service-card:nth-child(1) .service-features li:nth-child(1) { animation: featureSlideIn 0.5s ease 0.3s forwards; }
.service-card:nth-child(1) .service-features li:nth-child(2) { animation: featureSlideIn 0.5s ease 0.4s forwards; }
.service-card:nth-child(1) .service-features li:nth-child(3) { animation: featureSlideIn 0.5s ease 0.5s forwards; }
.service-card:nth-child(1) .service-features li:nth-child(4) { animation: featureSlideIn 0.5s ease 0.6s forwards; }

.service-card:nth-child(2) .service-features li:nth-child(1) { animation: featureSlideIn 0.5s ease 0.5s forwards; }
.service-card:nth-child(2) .service-features li:nth-child(2) { animation: featureSlideIn 0.5s ease 0.6s forwards; }
.service-card:nth-child(2) .service-features li:nth-child(3) { animation: featureSlideIn 0.5s ease 0.7s forwards; }
.service-card:nth-child(2) .service-features li:nth-child(4) { animation: featureSlideIn 0.5s ease 0.8s forwards; }

.service-card:nth-child(3) .service-features li:nth-child(1) { animation: featureSlideIn 0.5s ease 0.7s forwards; }
.service-card:nth-child(3) .service-features li:nth-child(2) { animation: featureSlideIn 0.5s ease 0.8s forwards; }
.service-card:nth-child(3) .service-features li:nth-child(3) { animation: featureSlideIn 0.5s ease 0.9s forwards; }
.service-card:nth-child(3) .service-features li:nth-child(4) { animation: featureSlideIn 0.5s ease 1.0s forwards; }

.service-card:nth-child(4) .service-features li:nth-child(1) { animation: featureSlideIn 0.5s ease 0.9s forwards; }
.service-card:nth-child(4) .service-features li:nth-child(2) { animation: featureSlideIn 0.5s ease 1.0s forwards; }
.service-card:nth-child(4) .service-features li:nth-child(3) { animation: featureSlideIn 0.5s ease 1.1s forwards; }
.service-card:nth-child(4) .service-features li:nth-child(4) { animation: featureSlideIn 0.5s ease 1.2s forwards; }

.service-card:nth-child(5) .service-features li:nth-child(1) { animation: featureSlideIn 0.5s ease 1.1s forwards; }
.service-card:nth-child(5) .service-features li:nth-child(2) { animation: featureSlideIn 0.5s ease 1.2s forwards; }
.service-card:nth-child(5) .service-features li:nth-child(3) { animation: featureSlideIn 0.5s ease 1.3s forwards; }
.service-card:nth-child(5) .service-features li:nth-child(4) { animation: featureSlideIn 0.5s ease 1.4s forwards; }

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-features li:hover {
    color: var(--bulldog-red);
    padding-left: 36px;
}

/* Premium checkmark icon */
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(
        135deg,
        var(--bulldog-red) 0%,
        #8a0a25 100%
    );
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 2px 8px rgba(186, 12, 47, 0.3),
        0 0 0 2px rgba(186, 12, 47, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-features li:hover::before {
    box-shadow: 
        0 4px 12px rgba(186, 12, 47, 0.5),
        0 0 0 3px rgba(186, 12, 47, 0.2),
        0 0 20px rgba(186, 12, 47, 0.2);
    transform: scale(1.15) rotate(360deg);
}

/* Enhanced section CTA button */
.services .section-cta {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services .section-cta .btn-primary {
    background: linear-gradient(
        135deg,
        var(--bulldog-red) 0%,
        #8a0a25 100%
    );
    color: var(--white);
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 
        0 6px 20px rgba(186, 12, 47, 0.4),
        0 0 0 2px rgba(186, 12, 47, 0.2),
        0 0 30px rgba(186, 12, 47, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.services .section-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.services .section-cta .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.services .section-cta .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 10px 35px rgba(186, 12, 47, 0.5),
        0 0 0 4px rgba(186, 12, 47, 0.3),
        0 0 50px rgba(186, 12, 47, 0.3);
}

.services .section-cta .btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

/* ==========================================================================
   Results Section
   ========================================================================== */

/* ==========================================================================
   Results Section - CAROUSEL-LEVEL QUALITY
   Animated counters, pulse effects, premium badges, 3D transforms
   ========================================================================== */

.results {
    background: linear-gradient(
        180deg,
        #000000 0%,
        #0a0a0a 50%,
        #000000 100%
    );
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Animated red stripe pattern background */
.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(186, 12, 47, 0.03) 40px,
        rgba(186, 12, 47, 0.03) 80px
    );
    pointer-events: none;
    animation: stripeSlideResults 30s linear infinite;
}

@keyframes stripeSlideResults {
    0% { transform: translateX(0); }
    100% { transform: translateX(80px); }
}

/* Glowing red orb in background */
.results::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(186, 12, 47, 0.15) 0%,
        rgba(186, 12, 47, 0.05) 30%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Enhanced section title */
.results .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 
        0 2px 10px rgba(186, 12, 47, 0.5),
        0 4px 20px rgba(186, 12, 47, 0.3);
}

/* Premium underline for section title */
.results .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--bulldog-red) 20%,
        var(--bulldog-red) 80%,
        transparent 100%
    );
    box-shadow: 
        0 2px 15px rgba(186, 12, 47, 0.6),
        0 0 30px rgba(186, 12, 47, 0.4);
    animation: titleUnderlineGlow 2s ease-in-out infinite;
}

@keyframes titleUnderlineGlow {
    0%, 100% { 
        box-shadow: 
            0 2px 15px rgba(186, 12, 47, 0.6),
            0 0 30px rgba(186, 12, 47, 0.4);
    }
    50% { 
        box-shadow: 
            0 3px 20px rgba(186, 12, 47, 0.8),
            0 0 40px rgba(186, 12, 47, 0.6);
    }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

/* Premium result cards with 3-layer shadows */
.result-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 3px solid var(--bulldog-red);
    border-radius: 16px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    /* 3-layer shadow: depth + red outline + red glow */
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(186, 12, 47, 0.3),
        0 0 30px rgba(186, 12, 47, 0.2);
    /* Staggered entrance */
    opacity: 0;
    transform: translateY(40px) scale(0.9);
}

/* Staggered animation delays for each result card */
.result-card:nth-child(1) {
    animation: resultCardEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.result-card:nth-child(2) {
    animation: resultCardEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.result-card:nth-child(3) {
    animation: resultCardEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.result-card:nth-child(4) {
    animation: resultCardEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

@keyframes resultCardEntrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Glowing corner accents */
.result-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--bulldog-red);
    border-left: 3px solid var(--bulldog-red);
    border-radius: 16px 0 0 0;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.result-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--bulldog-red);
    border-right: 3px solid var(--bulldog-red);
    border-radius: 0 0 16px 0;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.result-card:hover::before,
.result-card:hover::after {
    width: 50px;
    height: 50px;
    opacity: 1;
}

/* Premium 3D hover effect with pulse */
.result-card:hover {
    background: linear-gradient(
        135deg,
        rgba(186, 12, 47, 0.95) 0%,
        rgba(138, 10, 37, 0.95) 100%
    );
    border-width: 4px;
    /* Enhanced 3-layer shadow on hover */
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(186, 12, 47, 0.5),
        0 0 50px rgba(186, 12, 47, 0.5),
        inset 0 2px 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-12px) perspective(1000px) rotateX(3deg) scale(1.05);
}

/* Premium stat numbers with gradient text */
.result-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(
        135deg,
        var(--bulldog-red) 0%,
        #ff1744 50%,
        var(--bulldog-red) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    margin-bottom: 16px;
    line-height: 1;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 30px rgba(186, 12, 47, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: numberGradientShift 3s ease infinite;
}

@keyframes numberGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.result-card:hover .result-number {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #ffcccc 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.15);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 4px 40px rgba(186, 12, 47, 0.8);
}

/* Premium stat labels */
.result-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.result-card:hover .result-label {
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Premium CTA button in results section */
.results .section-cta {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.results .section-cta .btn-primary {
    background: linear-gradient(
        135deg,
        var(--bulldog-red) 0%,
        #8a0a25 100%
    );
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.125rem;
    font-weight: 700;
    border: 3px solid var(--white);
    border-radius: 50px;
    box-shadow: 
        0 8px 25px rgba(186, 12, 47, 0.5),
        0 0 0 2px rgba(186, 12, 47, 0.3),
        0 0 40px rgba(186, 12, 47, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.results .section-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.results .section-cta .btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.results .section-cta .btn-primary:hover {
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 
        0 12px 40px rgba(186, 12, 47, 0.7),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(186, 12, 47, 0.5);
}

.results .section-cta .btn-primary:active {
    transform: translateY(-3px) scale(1.05);
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.case-studies {
    background: var(--gray);
}

.case-grid {
    display: grid;
    gap: 50px;
}

.case-card {
    background: var(--white);
    padding: 50px;
    border-left: 6px solid var(--bulldog-red);
}

.case-badge {
    display: inline-block;
    background: var(--bulldog-red);
    color: var(--white);
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.case-card h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--black);
}

.case-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.case-section h4 {
    font-size: 1rem;
    color: var(--bulldog-red);
    margin-bottom: 12px;
}

.case-section p {
    color: var(--dark-gray);
}

.case-testimonial {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-gray);
    border-left: 4px solid var(--bulldog-red);
    padding-left: 24px;
    margin: 30px 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.ceo-section {
    margin: 50px 0;
    padding: 40px;
    background: var(--gray);
    border-left: 4px solid var(--bulldog-red);
}

.ceo-section h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
    text-align: center;
}

.ceo-card {
    max-width: 100%; /* Allow full width for carousel */
    margin: 0 auto;
}

.ceo-info h4 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 8px;
}

.ceo-title {
    font-size: 1.125rem;
    color: var(--bulldog-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ceo-bio {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.ceo-experience {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--bulldog-red);
}

.ceo-experience h5 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.experience-intro {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-size: 1.063rem;
}

/* Client Carousel */
/* Portfolio Badge */
.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--bulldog-red) 0%, #8a0a25 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 20px rgba(186, 12, 47, 0.3),
        0 0 0 3px rgba(186, 12, 47, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin: 30px auto 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate 4s linear infinite;
}

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

.badge-text {
    font-size: 0.875rem;
}

.badge-verified {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
}

.client-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 60px 100px;
    overflow: visible; /* Allow peek of next slides */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(250, 250, 250, 0.8));
    border-radius: 24px;
    border: 1px solid rgba(186, 12, 47, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(186, 12, 47, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

/* Decorative corner accents - Enhanced with red (desktop only) */
@media (min-width: 969px) {
    .client-carousel-container::before,
    .client-carousel-container::after {
        border: 4px solid var(--bulldog-red);
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(186, 12, 47, 0.2);
    }
}

.client-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); /* Smoother, bouncy transition */
    overflow: visible;
}

.client-slide {
    min-width: calc(30% - 20px); /* Slightly smaller to show peek of next slide */
    flex-shrink: 0;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.client-slide:nth-child(1) { animation-delay: 0.1s; }
.client-slide:nth-child(2) { animation-delay: 0.2s; }
.client-slide:nth-child(3) { animation-delay: 0.3s; }
.client-slide:nth-child(4) { animation-delay: 0.4s; }
.client-slide:nth-child(5) { animation-delay: 0.5s; }
.client-slide:nth-child(6) { animation-delay: 0.6s; }
.client-slide:nth-child(7) { animation-delay: 0.7s; }
.client-slide:nth-child(8) { animation-delay: 0.8s; } /* Origin story - special timing */

/* Staggered content animation */
.client-logo-wrapper {
    animation: logoAppear 0.6s ease forwards;
    animation-delay: inherit;
    opacity: 0;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.client-info h6,
.client-role,
.client-desc,
.client-link {
    opacity: 0;
    animation: textAppear 0.5s ease forwards;
}

.client-info h6 {
    animation-delay: 0.3s;
}

.client-role {
    animation-delay: 0.4s;
}

.client-desc {
    animation-delay: 0.5s;
}

.client-link {
    animation-delay: 0.6s;
}

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

.client-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e8e8e8;
    border-top: 4px solid var(--bulldog-red);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(186, 12, 47, 0.01) 10px,
            rgba(186, 12, 47, 0.01) 20px
        );
    pointer-events: none;
    opacity: 0.5;
}

.client-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.client-card:hover::after {
    transform: translateX(100%);
}

.client-card:hover {
    border-color: var(--bulldog-red);
    border-top-width: 6px;
    box-shadow: 0 15px 45px rgba(186, 12, 47, 0.2);
    transform: translateY(-10px) perspective(1000px) rotateX(2deg);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.client-card:hover .client-logo-wrapper {
    transform: translateY(-8px) scale(1.05);
}

.client-card:hover .client-info h6 {
    transform: translateY(-2px);
}

.client-logo-wrapper {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e0e0e0;
    transition: all 0.4s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 0 2px rgba(186, 12, 47, 0.05);
    position: relative;
}

.client-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--bulldog-red) 0%, #8a0a25 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-card:hover .client-logo-wrapper {
    border-color: var(--bulldog-red);
    box-shadow: 
        0 8px 25px rgba(186, 12, 47, 0.25),
        0 0 0 4px rgba(186, 12, 47, 0.1),
        0 0 20px rgba(186, 12, 47, 0.2);
    transform: translateY(-5px);
}

.client-card:hover .client-logo-wrapper::before {
    opacity: 1;
}

.client-logo {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.05);
}

.client-logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bulldog-red) 0%, var(--red-dark) 100%);
}

.fallback-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.client-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.client-info h6 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.client-info h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bulldog-red), transparent);
    border-radius: 2px;
}

.client-role {
    font-size: 0.813rem;
    color: var(--bulldog-red);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: rgba(186, 12, 47, 0.08);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: center;
}

.role-icon {
    font-size: 1.1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
    animation: verifiedPulse 2s ease-in-out infinite;
}

@keyframes verifiedPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.6);
        transform: scale(1.05);
    }
}

.client-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    font-weight: 400;
}

.client-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.938rem;
    color: var(--bulldog-red);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 2px solid var(--bulldog-red);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.client-link:hover {
    color: var(--white);
    background: var(--bulldog-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 12, 47, 0.3);
}

.client-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.client-link:hover::after {
    transform: translateX(4px);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--bulldog-red);
    border-radius: 50%;
    color: var(--bulldog-red);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(186, 12, 47, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--bulldog-red);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.carousel-btn:hover {
    background: var(--bulldog-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(186, 12, 47, 0.4);
    animation: pulse 1.5s infinite;
}

.carousel-btn:hover::before {
    opacity: 0.6;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(186, 12, 47, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(186, 12, 47, 0.6);
    }
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--bulldog-red);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.carousel-indicator:hover {
    background: #999;
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--bulldog-red);
    border-color: var(--bulldog-red);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(186, 12, 47, 0.2);
}

.carousel-indicator.active::before {
    opacity: 0.5;
}

/* ==========================================================================
   Branding Consistency - Enhancement #10
   ========================================================================== */

/* Portfolio Badge - Enhanced with more red accent */
.portfolio-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--bulldog-red) 0%, #8a0a25 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 20px rgba(186, 12, 47, 0.3),
        0 0 0 2px rgba(186, 12, 47, 0.1);
    margin: 30px auto 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Bulldog-inspired stripe pattern on container */
.client-carousel-container {
    position: relative;
}

.client-carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--bulldog-red) 0%,
        var(--bulldog-red) 25%,
        transparent 25%,
        transparent 50%,
        var(--bulldog-red) 50%,
        var(--bulldog-red) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 40px 6px;
    opacity: 0.3;
    z-index: 1;
}

.client-carousel-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--bulldog-red) 0%,
        var(--bulldog-red) 25%,
        transparent 25%,
        transparent 50%,
        var(--bulldog-red) 50%,
        var(--bulldog-red) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 40px 6px;
    opacity: 0.3;
    z-index: 1;
}

/* Red accent on indicators container */
.carousel-indicators {
    border: 2px solid rgba(186, 12, 47, 0.15);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(250, 250, 250, 0.95) 100%
    );
}

/* Enhanced red glow on active indicator */
.carousel-indicator.active::before {
    background: var(--bulldog-red);
    opacity: 0.7;
    filter: blur(10px);
}

/* Card top border - more prominent red */
.client-card {
    border-top: 5px solid var(--bulldog-red);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(186, 12, 47, 0.05);
}

.client-card:hover {
    border-top-width: 7px;
    box-shadow: 
        0 15px 45px rgba(186, 12, 47, 0.2),
        0 0 30px rgba(186, 12, 47, 0.1),
        inset 0 1px 0 rgba(186, 12, 47, 0.1);
}

/* Enhanced verified badge with red glow */
.verified-badge {
    box-shadow: 
        0 2px 8px rgba(76, 175, 80, 0.4),
        0 0 0 2px rgba(186, 12, 47, 0.1);
}

/* Role badge - more red accent */
.client-role {
    background: linear-gradient(
        135deg,
        rgba(186, 12, 47, 0.08) 0%,
        rgba(186, 12, 47, 0.12) 100%
    );
    border: 1px solid rgba(186, 12, 47, 0.2);
}

/* Stats section - enhanced red theme */
.client-stats {
    background: linear-gradient(
        135deg,
        rgba(186, 12, 47, 0.05) 0%,
        rgba(186, 12, 47, 0.1) 100%
    );
    border: 2px solid rgba(186, 12, 47, 0.2);
    box-shadow: inset 0 1px 0 rgba(186, 12, 47, 0.1);
}

/* Testimonial - red accent border */
.client-testimonial {
    border-left: 4px solid var(--bulldog-red);
    box-shadow: -2px 0 0 rgba(186, 12, 47, 0.1);
}

/* Link button - enhanced red theme */
.client-link {
    border: 2px solid var(--bulldog-red);
    box-shadow: 0 0 0 2px rgba(186, 12, 47, 0.1);
}

.client-link:hover {
    box-shadow: 
        0 4px 12px rgba(186, 12, 47, 0.3),
        0 0 0 2px var(--bulldog-red);
}

/* Carousel buttons - enhanced red outline */
.carousel-btn {
    border: 3px solid var(--bulldog-red);
    box-shadow: 
        0 4px 20px rgba(186, 12, 47, 0.2),
        0 0 0 1px rgba(186, 12, 47, 0.1);
}

.carousel-btn:hover {
    box-shadow: 
        0 8px 30px rgba(186, 12, 47, 0.4),
        0 0 20px rgba(186, 12, 47, 0.3);
}

/* Championship/Athletic aesthetic - subtle pattern on card */
.client-card::before {
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(186, 12, 47, 0.015) 10px,
            rgba(186, 12, 47, 0.015) 20px
        );
    opacity: 1;
}

/* UGA-inspired corner brackets - red accent */
.client-carousel-container {
    position: relative;
}

/* Top-left corner bracket */
.client-carousel-container > .carousel-indicators::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -40px;
    width: 80px;
    height: 80px;
    border: 4px solid rgba(186, 12, 47, 0.2);
    border-right: none;
    border-bottom: none;
    border-radius: 16px 0 0 0;
    z-index: 0;
    pointer-events: none;
}

/* Bottom-right corner bracket */
.client-carousel-container > .carousel-indicators::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -40px;
    width: 80px;
    height: 80px;
    border: 4px solid rgba(186, 12, 47, 0.2);
    border-left: none;
    border-top: none;
    border-radius: 0 0 16px 0;
    z-index: 0;
    pointer-events: none;
}

/* Add subtle bulldog paw print pattern (very subtle) */
@media (min-width: 969px) {
    .client-carousel-container {
        background-image: 
            linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(250, 250, 250, 0.8)),
            radial-gradient(circle at 20% 20%, rgba(186, 12, 47, 0.02) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(186, 12, 47, 0.02) 0%, transparent 50%);
    }
}

/* Championship/Athletic divider lines */
.ceo-experience h5 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.ceo-experience h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bulldog-red) 0%, transparent 100%);
    border-radius: 2px;
}

/* Red accent on experience intro text */
.experience-intro {
    border-left: 4px solid var(--bulldog-red);
    padding-left: 16px;
    margin: 20px 0;
    color: #555;
    font-weight: 500;
}

/* ==========================================================================
   Origin Story Card - Special Styling for 8th Slide
   ========================================================================== */

/* Origin story card - enhanced with special branding */
.origin-story-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(250, 250, 250, 1) 50%,
        rgba(245, 245, 245, 1) 100%
    );
    border-top: 6px solid var(--bulldog-red);
    position: relative;
    overflow: visible;
}

/* Special "origin story" marker */
.origin-story-card::before {
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(186, 12, 47, 0.025) 8px,
            rgba(186, 12, 47, 0.025) 16px
        );
    opacity: 1;
}

/* Origin story hover enhancement */
.origin-story-card:hover {
    border-top-width: 8px;
    box-shadow: 
        0 20px 50px rgba(186, 12, 47, 0.25),
        0 0 40px rgba(186, 12, 47, 0.15),
        inset 0 2px 0 rgba(186, 12, 47, 0.15);
    transform: translateY(-12px) perspective(1000px) rotateX(2deg) scale(1.02);
}

/* Origin badge - special styling (truck emoji) */
.origin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--bulldog-red) 0%, #8a0a25 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: bold;
    margin-left: 8px;
    box-shadow: 
        0 3px 10px rgba(186, 12, 47, 0.4),
        0 0 0 3px rgba(186, 12, 47, 0.1);
    animation: originPulse 3s ease-in-out infinite;
}

@keyframes originPulse {
    0%, 100% {
        box-shadow: 
            0 3px 10px rgba(186, 12, 47, 0.4),
            0 0 0 3px rgba(186, 12, 47, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 5px 15px rgba(186, 12, 47, 0.6),
            0 0 0 5px rgba(186, 12, 47, 0.2);
        transform: scale(1.1);
    }
}

/* Origin achievement badge - special gold with red accent */
.achievement-badge-origin {
    background: linear-gradient(
        135deg,
        #FFD700 0%,
        #FFA500 50%,
        var(--bulldog-red) 100%
    );
    box-shadow: 
        0 5px 20px rgba(255, 215, 0, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.9),
        0 0 0 5px rgba(186, 12, 47, 0.4),
        0 0 30px rgba(186, 12, 47, 0.3);
    animation: originBadgePulse 3s ease-in-out infinite;
}

@keyframes originBadgePulse {
    0%, 100% {
        transform: rotate(-3deg) scale(1);
    }
    50% {
        transform: rotate(-3deg) scale(1.08);
        box-shadow: 
            0 6px 25px rgba(255, 215, 0, 0.6),
            0 0 0 3px rgba(255, 255, 255, 0.9),
            0 0 0 6px rgba(186, 12, 47, 0.5),
            0 0 40px rgba(186, 12, 47, 0.4);
    }
}

.origin-story-card:hover .achievement-badge-origin {
    transform: rotate(0deg) scale(1.15);
}

/* Origin story logo wrapper - special red glow */
.origin-story-card .client-logo-wrapper {
    border-color: rgba(186, 12, 47, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(186, 12, 47, 0.1),
        0 0 20px rgba(186, 12, 47, 0.15);
}

.origin-story-card:hover .client-logo-wrapper {
    border-color: var(--bulldog-red);
    box-shadow: 
        0 10px 30px rgba(186, 12, 47, 0.3),
        0 0 0 5px rgba(186, 12, 47, 0.15),
        0 0 40px rgba(186, 12, 47, 0.25);
    transform: translateY(-8px) scale(1.08);
}

/* Origin story stats - special red theme */
.origin-story-card .client-stats {
    background: linear-gradient(
        135deg,
        rgba(186, 12, 47, 0.08) 0%,
        rgba(186, 12, 47, 0.15) 100%
    );
    border: 2px solid rgba(186, 12, 47, 0.25);
    box-shadow: 
        inset 0 1px 0 rgba(186, 12, 47, 0.15),
        0 2px 8px rgba(186, 12, 47, 0.1);
}

/* Origin story testimonial - special emphasis */
.origin-story-card .client-testimonial {
    border-left: 5px solid var(--bulldog-red);
    background: linear-gradient(
        135deg,
        rgba(186, 12, 47, 0.03) 0%,
        rgba(186, 12, 47, 0.06) 100%
    );
    box-shadow: -3px 0 0 rgba(186, 12, 47, 0.15);
    font-weight: 600;
}

.origin-story-card .client-testimonial::before {
    color: rgba(186, 12, 47, 0.15);
}

/* Origin story link - special styling */
.origin-story-card .client-link {
    background: linear-gradient(
        135deg,
        rgba(186, 12, 47, 0.05) 0%,
        rgba(186, 12, 47, 0.08) 100%
    );
    border: 3px solid var(--bulldog-red);
    font-weight: 800;
    box-shadow: 
        0 0 0 2px rgba(186, 12, 47, 0.15),
        0 4px 12px rgba(186, 12, 47, 0.2);
}

.origin-story-card .client-link:hover {
    background: var(--bulldog-red);
    color: var(--white);
    box-shadow: 
        0 6px 18px rgba(186, 12, 47, 0.4),
        0 0 0 3px rgba(186, 12, 47, 0.2),
        0 0 30px rgba(186, 12, 47, 0.3);
    transform: translateY(-3px) scale(1.05);
}

/* ==========================================================================
   Client Image Optimizations - Enhanced Circular Fitting
   ========================================================================== */

/* Kyle Kennard - Enhanced circular fitting */
.kyle-kennard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.2);
    transition: transform 0.4s ease;
}

.client-card:hover .kyle-kennard-image {
    transform: scale(1.25);
}

.client-logo-wrapper:has(.kyle-kennard-image) {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-color: rgba(186, 12, 47, 0.2);
    overflow: hidden;
}

.client-card:hover .client-logo-wrapper:has(.kyle-kennard-image) {
    border-color: var(--bulldog-red);
    box-shadow: 
        0 10px 30px rgba(186, 12, 47, 0.35),
        0 0 0 5px rgba(186, 12, 47, 0.15),
        0 0 40px rgba(186, 12, 47, 0.25);
}

/* Chef Ashley Clay - Portrait optimization */
.chef-ashley-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.3);
    transition: transform 0.4s ease;
}

.client-card:hover .chef-ashley-image {
    transform: scale(1.35);
}

.client-logo-wrapper:has(.chef-ashley-image) {
    background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
    border-color: rgba(186, 12, 47, 0.2);
    overflow: hidden;
}

.client-card:hover .client-logo-wrapper:has(.chef-ashley-image) {
    border-color: var(--bulldog-red);
    box-shadow: 
        0 10px 30px rgba(186, 12, 47, 0.35),
        0 0 0 5px rgba(186, 12, 47, 0.15),
        0 0 40px rgba(186, 12, 47, 0.25);
}

/* Mogul Maker Academy - Logo optimization (FORM-FITTING) */
.mogul-maker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.4);
    transition: transform 0.4s ease;
}

.client-card:hover .mogul-maker-image {
    transform: scale(1.45);
}

.client-logo-wrapper:has(.mogul-maker-image) {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-color: rgba(186, 12, 47, 0.2);
    overflow: hidden;
}

.client-card:hover .client-logo-wrapper:has(.mogul-maker-image) {
    border-color: var(--bulldog-red);
    box-shadow: 
        0 10px 30px rgba(186, 12, 47, 0.35),
        0 0 0 5px rgba(186, 12, 47, 0.15),
        0 0 40px rgba(186, 12, 47, 0.25);
}

/* ==========================================================================
   Mobile-Specific Optimizations - Enhancement #9
   ========================================================================== */

/* Swipe Hint Indicator */
.swipe-hint {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, var(--bulldog-red) 0%, #8a0a25 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(186, 12, 47, 0.4);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swipe-hint.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.swipe-hint-icon {
    font-size: 1.5rem;
    animation: swipeAnimation 1.5s ease-in-out infinite;
}

@keyframes swipeAnimation {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

.swipe-hint-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Touch Targets - Larger buttons */
@media (max-width: 968px) {
    .carousel-btn {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        /* Ensure adequate touch target size */
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Larger indicator dots on mobile */
    .carousel-indicator {
        width: 16px;
        height: 16px;
        /* Adequate touch spacing */
        margin: 0 6px;
    }
    
    .carousel-indicator.active {
        transform: scale(1.5);
    }
    
    /* Show swipe hint space */
    .client-carousel-container {
        padding-bottom: 80px;
    }
}

/* Enhanced mobile card presentation */
@media (max-width: 640px) {
    /* Full-bleed card design on mobile */
    .client-slide {
        min-width: calc(100% - 40px);
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .client-card {
        border-radius: 20px; /* Larger radius on mobile */
        padding: 35px 25px;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Larger touch-friendly carousel buttons */
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    /* Optimize indicator spacing */
    .carousel-indicators {
        padding: 12px 20px;
        gap: 14px;
        margin-top: 30px;
    }
    
    /* Mobile-optimized logo sizing */
    .client-logo-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    /* Client image mobile optimizations */
    .kyle-kennard-image {
        transform: scale(1.3);
    }
    
    .client-card:hover .kyle-kennard-image {
        transform: scale(1.35);
    }
    
    .chef-ashley-image {
        transform: scale(1.4);
        object-position: center 15%;
    }
    
    .client-card:hover .chef-ashley-image {
        transform: scale(1.45);
    }
    
    .mogul-maker-image {
        transform: scale(1.5);
    }
    
    .client-card:hover .mogul-maker-image {
        transform: scale(1.55);
    }
    
    /* Better typography on mobile */
    .client-info h6 {
        font-size: 1.375rem;
        margin-bottom: 10px;
    }
    
    .client-role {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 14px;
    }
    
    .client-desc {
        font-size: 0.938rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    /* Larger touch-friendly link buttons */
    .client-link {
        font-size: 0.875rem;
        padding: 12px 24px;
        min-height: 44px; /* iOS touch target guideline */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile-optimized stats layout */
    .client-stats {
        padding: 14px 18px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
    
    /* Mobile testimonial optimization */
    .client-testimonial {
        padding: 12px 16px;
        margin: 12px 0;
    }
    
    .client-testimonial p {
        font-size: 0.813rem;
        line-height: 1.5;
    }
    
    /* Achievement badge mobile sizing */
    .achievement-badge {
        top: -10px;
        right: -10px;
        padding: 6px 12px;
        font-size: 0.625rem;
    }
    
    .achievement-icon {
        font-size: 0.938rem;
    }
}

/* Mobile swipe edge indicators */
@media (max-width: 968px) {
    .client-carousel-container::before,
    .client-carousel-container::after {
        /* Hide corner accents on mobile, replace with swipe indicators */
        display: none;
    }
    
    /* Add left/right edge gradients to suggest swipeability */
    .client-carousel::before,
    .client-carousel::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        pointer-events: none;
        z-index: 5;
        opacity: 0.6;
    }
    
    .client-carousel::before {
        left: 0;
        background: linear-gradient(to right, rgba(250, 250, 250, 0.9), transparent);
    }
    
    .client-carousel::after {
        right: 0;
        background: linear-gradient(to left, rgba(250, 250, 250, 0.9), transparent);
    }
}

/* Landscape mobile optimization */
@media (max-width: 968px) and (orientation: landscape) {
    .client-carousel-container {
        padding: 40px 60px 70px;
    }
    
    .client-card {
        padding: 30px 25px;
    }
    
    .client-logo-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .swipe-hint {
        bottom: -40px;
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* Touch feedback enhancements */
@media (hover: none) and (pointer: coarse) {
    /* This targets touch devices */
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.9);
        background: var(--red-hover);
    }
    
    .client-link:active {
        transform: scale(0.95);
    }
    
    .carousel-indicator:active {
        transform: scale(1.3);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .swipe-hint-icon {
        animation: none;
    }
    
    .carousel,
    .client-slide,
    .client-card {
        transition: none;
    }
}

/* ==========================================================================
   Interactive Elements - Enhancement #8
   ========================================================================== */

/* Achievement Badges */
.achievement-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.688rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.9),
        0 0 0 4px rgba(255, 215, 0, 0.3);
    z-index: 10;
    transform: rotate(-3deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: badgeAppear 0.6s ease forwards 0.8s;
}

@keyframes badgeAppear {
    from {
        opacity: 0;
        transform: rotate(-3deg) scale(0) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: rotate(-3deg) scale(1) translateY(0);
    }
}

.client-card:hover .achievement-badge {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.9),
        0 0 0 5px rgba(255, 215, 0, 0.4);
}

.achievement-icon {
    font-size: 1rem;
    display: inline-block;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.achievement-text {
    font-size: 0.688rem;
    font-weight: 900;
}

/* Client Stats - Hidden by default, reveal on hover */
.client-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(186, 12, 47, 0.05) 0%, rgba(186, 12, 47, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(186, 12, 47, 0.15);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.client-card:hover .client-stats {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bulldog-red);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(186, 12, 47, 0.2);
}

.stat-label {
    font-size: 0.688rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client Testimonials - Hidden by default, reveal on hover */
.client-testimonial {
    margin: 16px 0;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
    border-left: 3px solid var(--bulldog-red);
    border-radius: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    position: relative;
}

.client-testimonial::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: Georgia, serif;
    font-size: 3rem;
    color: rgba(186, 12, 47, 0.1);
    line-height: 1;
}

.client-card:hover .client-testimonial {
    opacity: 1;
    max-height: 150px;
    transform: translateY(0);
}

.client-testimonial p {
    font-size: 0.875rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Enhanced hover interaction - card expansion effect */
.client-card {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.client-card:hover {
    padding: 45px 32px; /* Slightly more padding on hover */
}

/* Tooltips for verified badges */
.verified-badge {
    position: relative;
    cursor: help;
}

.verified-badge::after {
    content: 'Verified Partnership';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.verified-badge::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.verified-badge:hover::after,
.verified-badge:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Link hover effects with "Quick View" indicator */
.client-link {
    position: relative;
    overflow: hidden;
}

.client-link::before {
    content: 'Quick View';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--white);
    color: var(--bulldog-red);
    padding: 0 4px;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.client-link:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Stagger animation delays for stats and testimonials */
.client-card:hover .stat-item:nth-child(1) {
    animation: statPop 0.4s ease forwards 0.1s;
}

.client-card:hover .stat-item:nth-child(2) {
    animation: statPop 0.4s ease forwards 0.2s;
}

@keyframes statPop {
    0% {
        transform: scale(0.8) translateY(10px);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Add glow pulse to cards with testimonials on hover */
.client-card:hover {
    animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 15px 45px rgba(186, 12, 47, 0.2);
    }
    50% {
        box-shadow: 
            0 15px 45px rgba(186, 12, 47, 0.2),
            0 0 30px rgba(186, 12, 47, 0.15);
    }
}

.experience-item {
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--gray);
    transition: var(--transition);
}

.experience-item:hover {
    border-left-color: var(--bulldog-red);
    padding-left: 24px;
}

.experience-item strong {
    display: block;
    font-size: 1rem;
    color: var(--bulldog-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.experience-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.experience-item a {
    color: var(--bulldog-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.experience-item a:hover {
    color: var(--red-hover);
    text-decoration: underline;
}

.label-list {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.label-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
    color: var(--dark-gray);
}

.label-list li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--bulldog-red);
    font-size: 0.75rem;
}

.label-list a {
    color: var(--bulldog-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.label-list a:hover {
    color: var(--red-hover);
    text-decoration: underline;
}

.ceo-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--bulldog-red);
    border-radius: 4px;
    color: var(--bulldog-red);
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
}

.ceo-social-link:hover {
    background: var(--bulldog-red);
    color: var(--white);
    transform: translateX(5px);
}

.social-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--bulldog-red);
    color: var(--white);
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ceo-social-link:hover .social-icon-inline {
    background: var(--white);
    color: var(--bulldog-red);
}

.values {
    margin-top: 60px;
}

.values h3 {
    font-size: 1.75rem;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--gray);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--bulldog-red);
    color: var(--white);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-item:hover h4,
.value-item:hover p {
    color: var(--white);
}

/* ==========================================================================
   Resources Section
   ========================================================================== */

.resources {
    background: var(--black);
    color: var(--white);
}

.resources .section-title,
.resources .section-description {
    color: var(--white);
}

.resource-highlight {
    margin-bottom: 60px;
}

.resource-card-featured {
    background: var(--bulldog-red);
    color: var(--white);
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.badge {
    display: inline-block;
    background: var(--white);
    color: var(--bulldog-red);
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.resource-card-featured h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.resource-card-featured p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.resource-includes {
    text-align: left;
    max-width: 400px;
    margin: 30px auto;
}

.resource-includes li {
    padding: 8px 0;
    font-size: 1rem;
}

.lead-capture-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 30px auto 0;
}

.lead-capture-form input {
    flex: 1;
    padding: 16px;
    font-size: 1rem;
    border: 2px solid var(--white);
    background: var(--white);
    color: var(--black);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.resource-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-top: 3px solid var(--bulldog-red);
}

.resource-item h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.resource-item p {
    margin-bottom: 20px;
    color: var(--gray);
}

.text-link {
    color: var(--bulldog-red);
    font-weight: 600;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--red-hover);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    background: var(--gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-item a {
    color: var(--bulldog-red);
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-item a:hover {
    color: var(--red-hover);
}

.contact-address {
    font-style: normal;
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 1.125rem;
}

.contact-tagline {
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--bulldog-red);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bulldog-red);
}

.form-success {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border: 3px solid var(--bulldog-red);
}

.form-success h3 {
    color: var(--bulldog-red);
    margin-bottom: 12px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: linear-gradient(to bottom, var(--black) 0%, rgba(186, 12, 47, 0.15) 100%);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 4px solid var(--bulldog-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    padding: 30px;
    background: radial-gradient(ellipse at center, rgba(186, 12, 47, 0.2) 0%, rgba(186, 12, 47, 0.1) 50%, transparent 80%);
    border-radius: 15px;
    filter: brightness(1.1);
}

.footer-tagline {
    color: var(--gray);
    font-style: italic;
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--white);
}

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

.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 16px;
}

.footer a {
    color: var(--gray);
}

.footer a:hover {
    color: var(--bulldog-red);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bulldog-red);
    color: var(--white);
    font-weight: 700;
    transition: var(--transition);
    border-radius: 4px;
}

.social-links a:hover {
    background: var(--red-hover);
    transform: translateY(-3px);
}

.social-icon {
    text-transform: uppercase;
    font-size: 0.875rem;
}

.ceo-social {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-social-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.ceo-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(186, 12, 47, 0.1);
    border: 1px solid var(--bulldog-red);
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.ceo-instagram:hover {
    background: var(--bulldog-red);
    transform: translateX(3px);
}

.ceo-instagram .social-icon {
    background: var(--bulldog-red);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

/* ==========================================================================
   Modal
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    max-width: 600px;
    width: 90%;
    position: relative;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-gray);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--bulldog-red);
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 30px;
    font-size: 1.125rem;
}

.modal-form {
    display: flex;
    gap: 12px;
}

.modal-form input {
    flex: 1;
    padding: 16px;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
}

/* ==========================================================================
   Mobile CTA Bar
   ========================================================================== */

.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, var(--black) 0%, rgba(186, 12, 47, 0.2) 50%, var(--black) 100%);
    padding: 16px 20px;
    z-index: 999;
    border-top: 3px solid var(--bulldog-red);
    box-shadow: 0 -2px 10px rgba(186, 12, 47, 0.3);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 968px) {
    .hero-logo {
        padding: 40px 30px;
    }
    
    .hero-logo-image {
        max-width: 400px;
    }
    
    .footer-logo-image {
        height: 100px;
        padding: 25px;
    }
    
    .client-carousel-container {
        padding: 40px 60px;
        overflow: hidden;
    }
    
    .client-slide {
        min-width: calc(45% - 15px); /* Show peek on tablet */
    }
    
    /* Interactive elements adjustments for tablet */
    .achievement-badge {
        top: -10px;
        right: -10px;
        padding: 5px 12px;
        font-size: 0.625rem;
    }
    
    .client-stats {
        gap: 15px;
        padding: 12px 16px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
    
    .client-testimonial {
        padding: 12px 14px;
        margin: 12px 0;
    }
    
    .client-testimonial p {
        font-size: 0.813rem;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(186, 12, 47, 0.15) 100%);
        transition: left 0.4s ease-in-out;
        padding: 40px 20px;
        overflow-y: auto;
        border-right: 4px solid var(--bulldog-red);
    }
    
    .nav.active {
        left: 0;
        box-shadow: 5px 0 20px rgba(186, 12, 47, 0.3);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .nav-list li {
        width: 100%;
        border-left: 3px solid transparent;
        padding-left: 16px;
        transition: var(--transition);
    }
    
    .nav-list li:hover {
        border-left-color: var(--bulldog-red);
        background: rgba(186, 12, 47, 0.1);
    }
    
    .nav-list a {
        font-size: 1.5rem;
        display: block;
        padding: 12px 0;
    }
    
    .nav-list a::after {
        bottom: 0;
        height: 3px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-cta-bar {
        display: block;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subhead {
        font-size: 1.125rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .pain-points {
        grid-template-columns: 1fr;
    }
    
    .case-content {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        padding: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .lead-capture-form,
    .modal-form {
        flex-direction: column;
    }
    
    .resource-card-featured {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 60px 0;
    }
    
    .hero-logo {
        padding: 30px 20px;
    }
    
    .hero-logo-image {
        max-width: 280px;
    }
    
    .client-carousel-container {
        padding: 30px 20px;
        overflow: hidden;
    }
    
    .client-carousel {
        justify-content: flex-start;
        align-items: center;
    }
    
    .client-slide {
        min-width: calc(100% - 40px); /* Full width minus padding */
        margin: 0 20px; /* Center each slide */
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
        z-index: 20;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .client-logo-wrapper {
        width: 100px;
        height: 100px;
    }
    
    /* Interactive elements adjustments for mobile */
    .achievement-badge {
        top: -8px;
        right: -8px;
        padding: 4px 10px;
        font-size: 0.563rem;
        gap: 4px;
    }
    
    .achievement-icon {
        font-size: 0.875rem;
    }
    
    .client-stats {
        flex-direction: column;
        gap: 12px;
        padding: 10px 14px;
        margin: 14px 0;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.563rem;
    }
    
    .client-testimonial {
        padding: 10px 12px;
        margin: 10px 0;
    }
    
    .client-testimonial::before {
        font-size: 2rem;
        top: 4px;
        left: 4px;
    }
    
    .client-testimonial p {
        font-size: 0.75rem;
    }
    
    /* Make stats and testimonials always visible on mobile (no hover) */
    .client-stats,
    .client-testimonial {
        opacity: 1;
        max-height: 300px;
        transform: translateY(0);
    }
    
    /* Mobile-specific swipe indicator positioning */
    .swipe-hint {
        bottom: -50px;
        font-size: 0.813rem;
        padding: 10px 20px;
    }
    
    .swipe-hint-icon {
        font-size: 1.25rem;
    }
    
    /* Adjust container to show swipe hint */
    .client-carousel-container {
        margin-bottom: 80px;
    }
    
    .ceo-section {
        padding: 30px 20px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .pain-card {
        padding: 30px 20px;
    }
    
    .result-number {
        font-size: 3rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-image {
        height: 80px;
        padding: 20px;
    }
    
    /* Mobile-specific touch improvements */
    .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    /* Improve mobile CTA visibility */
    .mobile-cta-bar .btn {
        font-size: 0.9rem;
        padding: 14px 20px;
        width: 100%;
    }
}