/* ================================
   VIDEO HERO
   ================================ */
.video-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    will-change: transform;
}

.video-hero-logo img {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    background: transparent;
    opacity: 0;
    transform: scale(0.9);
    animation: logoFadeIn 1.2s ease forwards 0.3s;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: buttonsFadeIn 0.8s ease forwards 1s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--hover-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-gold-outline {
    background: linear-gradient(90deg, var(--gold-accent) 0%, #F59E0B 100%);
    color: var(--dark-base);
    border: none;
}

.btn-gold-outline:hover {
    background: linear-gradient(90deg, #F59E0B 0%, var(--gold-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ================================
   TAGLINE / VALUE PROPOSITION — HIGH IMPACT
   ================================ */
.tagline-section {
    padding: 280px 80px 320px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.tagline-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.tagline-inner .tagline-punch,
.tagline-inner .tagline-payoff {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.tagline-section.animate .tagline-punch {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.05s;
}

.tagline-section.animate .tagline-payoff {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.tagline-punch {
    font-size: clamp(36px, 8.5vw, 84px);
    line-height: 1.1;
    color: var(--dark-base);
    font-weight: 900;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: -0.045em;
}

.tagline-payoff {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.4;
    color: var(--dark-slate);
    font-weight: 700;
    margin: 0;
    text-align: center;
    letter-spacing: -0.02em;
}

.tagline-brand {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 1.08em;
}

.tagline-pop {
    display: inline-block;
    font-weight: 900;
    opacity: 0;
    transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
}

.tagline-pop:hover {
    transform: scale(1.06);
}

.tagline-section.animate .tagline-pop {
    animation: tagline-pop-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tagline-section.animate .tagline-punch .tagline-pop {
    animation-delay: 0.25s;
    opacity: 0;
}

.tagline-section.animate .tagline-payoff .tagline-pop {
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes tagline-pop-in {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    70% {
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.tagline-pop-blue {
    color: var(--primary-blue);
}

.tagline-pop-blue:hover {
    color: var(--hover-blue);
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
}

.tagline-pop-gold {
    color: var(--gold-accent);
}

.tagline-pop-gold:hover {
    color: #F59E0B;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.35);
}

.tagline-cta-wrap {
    margin-top: 48px;
    text-align: center;
}

.tagline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    background: transparent;
    border: 1.5px solid var(--gold-accent);
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.tagline-cta:hover {
    color: #fff;
    background: var(--gold-accent);
    border-radius: 9999px;
}

.tagline-cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 11px;
    color: #fff;
    background: #000;
    border-radius: 50%;
    transition: color 0.3s ease, background 0.3s ease;
}

.tagline-cta:hover i {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
}

/* ================================
   TRUST / STATS SECTION
   ================================ */
.trust-stats-section {
    padding: 80px 24px 100px;
    background: linear-gradient(180deg, #1a1f2e 0%, #252b3d 100%);
    position: relative;
    overflow: hidden;
}

.trust-stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trust-stats-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trust-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 64px;
    align-items: center;
}

.trust-stats-col-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.trust-stats-col-copy .trust-stats-title,
.trust-stats-col-copy .trust-stats-subtitle,
.trust-stats-col-copy .trust-stats-intro,
.trust-stats-col-copy .trust-stats-body,
.trust-stats-col-copy .trust-stats-line,
.trust-stats-col-copy .trust-stats-bridge {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.trust-stats-col-chart {
    min-width: 0;
}

.trust-chart-heading {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.trust-stats-section.animate .trust-chart-heading {
    opacity: 1;
    transform: translateY(0);
}

.trust-stats-header {
    grid-column: 1 / -1;
    text-align: left;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-stats-section.animate .trust-stats-header {
    opacity: 1;
    transform: translateY(0);
}

.trust-stats-section .trust-stats-header .section-accent {
    margin-bottom: 16px;
    justify-content: flex-start;
}

.trust-stats-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.trust-stats-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.5;
    text-align: left;
}

.trust-stats-intro {
    font-size: clamp(17px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: left;
    margin: 0 0 28px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.trust-stats-section.animate .trust-stats-intro {
    opacity: 1;
    transform: translateY(0);
}

.trust-stats-body {
    margin: 0 0 24px 0;
}

.trust-stats-line {
    font-size: clamp(16px, 1.9vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 10px 0;
    font-weight: 500;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-stats-line:last-child {
    margin-bottom: 0;
}

.trust-stats-section.animate .trust-stats-line {
    opacity: 1;
    transform: translateY(0);
}

.trust-stats-section.animate .trust-stats-line:nth-child(1) { transition-delay: 0.15s; }
.trust-stats-section.animate .trust-stats-line:nth-child(2) { transition-delay: 0.22s; }
.trust-stats-section.animate .trust-stats-line:nth-child(3) { transition-delay: 0.29s; }
.trust-stats-section.animate .trust-stats-line:nth-child(4) { transition-delay: 0.36s; }

/* Chart layout */
.trust-stats-chart {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 0;
    min-width: 0;
}

.trust-chart-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-stats-section.animate .trust-chart-item {
    opacity: 1;
    transform: translateY(0);
}

.trust-stats-section.animate .trust-chart-item:nth-child(1) {
    transition-delay: 0.1s;
}

.trust-stats-section.animate .trust-chart-item:nth-child(2) {
    transition-delay: 0.25s;
}

.trust-stats-section.animate .trust-chart-item:nth-child(3) {
    transition-delay: 0.4s;
}

.trust-chart-label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.trust-chart-label {
    font-size: clamp(15px, 1.9vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.45;
    min-width: 0;
    flex: 1 1 180px;
}

.trust-chart-value {
    font-size: clamp(1.25em, 2.8vw, 1.6em);
    font-weight: 900;
    color: var(--gold-accent);
    background: rgba(251, 191, 36, 0.18);
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 4px 10px;
    border-radius: 8px;
    flex-shrink: 0;
    text-shadow: 0 0 28px rgba(251, 191, 36, 0.45);
}

.trust-chart-bar-wrap {
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.trust-chart-bar {
    height: 100%;
    border-radius: 999px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.trust-stats-section.animate .trust-chart-bar[data-width="53"] {
    width: 53%;
}

.trust-stats-section.animate .trust-chart-bar[data-width="75"] {
    width: 75%;
}

.trust-stats-section.animate .trust-chart-bar[data-width="60"] {
    width: 60%;
}

.trust-chart-bar-gold {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.5) 0%, var(--gold-accent) 100%);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.trust-stats-bridge {
    grid-column: 1 / -1;
    font-size: clamp(16px, 1.9vw, 18px);
    color: var(--gold-accent);
    font-weight: 600;
    margin: 16px 0 0 0;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.trust-stats-section.animate .trust-stats-bridge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

@media (max-width: 768px) {
    .tagline-section {
        padding: 100px 24px 120px;
    }

    .tagline-inner {
        padding: 0;
    }

    .tagline-punch {
        font-size: clamp(30px, 9vw, 44px);
        margin-bottom: 28px;
        letter-spacing: -0.04em;
    }

    .tagline-payoff {
        font-size: clamp(20px, 5.5vw, 24px);
    }

    .trust-stats-section {
        padding: 60px 20px 80px;
    }

    .trust-stats-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 820px;
    }

    .trust-stats-col-copy {
        order: 1;
    }

    .trust-stats-col-chart {
        order: 2;
    }

    .trust-stats-header {
        text-align: center;
        margin-bottom: 28px;
    }

    .trust-stats-section .trust-stats-header .section-accent {
        justify-content: center;
    }

    .trust-stats-subtitle {
        margin-top: 10px;
        text-align: center;
    }

    .trust-stats-intro {
        text-align: center;
        margin-bottom: 24px;
    }

    .trust-stats-body {
        margin-bottom: 20px;
    }

    .trust-stats-line {
        text-align: center;
    }

    .trust-stats-bridge {
        margin-top: 14px;
    }

    .trust-chart-heading {
        text-align: center;
        margin-bottom: 16px;
    }

    .trust-stats-chart {
        gap: 24px;
        margin-bottom: 0;
    }

    .trust-chart-label-row {
        gap: 10px;
    }

    .trust-chart-bar-wrap {
        height: 12px;
    }

    .trust-stats-line {
        font-size: clamp(15px, 4vw, 17px);
    }
}

/* ================================
   INTRO SECTION (V2 Two Column)
   ================================ */
.intro-section {
    padding: 140px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--dark-base) 0%, var(--dark-slate) 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

.intro-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
}

.intro-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -100px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.intro-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-accent);
    bottom: -50px;
    left: -50px;
    animation: pulse 8s ease-in-out infinite 2s;
}

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

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intro-left {
    text-align: left;
}

/* Staggered fade-in animations */
.intro-left > *,
.intro-right > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.intro-section.animate .intro-left > *,
.intro-section.animate .intro-right > * {
    opacity: 1;
    transform: translateY(0);
}

.intro-section.animate .intro-left > *:nth-child(1) { transition-delay: 0.1s; }
.intro-section.animate .intro-left > *:nth-child(2) { transition-delay: 0.2s; }
.intro-section.animate .intro-left > *:nth-child(3) { transition-delay: 0.3s; }

.intro-section.animate .intro-right > *:nth-child(1) { transition-delay: 0.2s; }
.intro-section.animate .intro-right > *:nth-child(2) { transition-delay: 0.35s; }
.intro-section.animate .intro-right > *:nth-child(3) { transition-delay: 0.5s; }

.intro-greeting {
    display: inline-block;
    font-size: 14px;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--gold-accent);
}

.intro-name {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.intro-subtitle {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    min-height: 45px;
    background: linear-gradient(90deg, var(--hover-blue), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tech Stack Icons */
.intro-tech {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.intro-tech-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 24px;
    transition: all 0.3s ease;
}

.intro-tech-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Subtle floating animation on tech icons */
.intro-section.animate .intro-tech-icon {
    animation: subtleFloat 3s ease-in-out infinite;
}

.intro-section.animate .intro-tech-icon:nth-child(1) { animation-delay: 0s; }
.intro-section.animate .intro-tech-icon:nth-child(2) { animation-delay: 0.5s; }
.intro-section.animate .intro-tech-icon:nth-child(3) { animation-delay: 1s; }
.intro-section.animate .intro-tech-icon:nth-child(4) { animation-delay: 1.5s; }
.intro-section.animate .intro-tech-icon:nth-child(5) { animation-delay: 2s; }
.intro-section.animate .intro-tech-icon:nth-child(6) { animation-delay: 2.5s; }

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

.intro-tech-icon.aws { color: #FF9900; }
.intro-tech-icon.lambda { color: #FF9900; }
.intro-tech-icon.database { color: #3B48CC; }
.intro-tech-icon.cloudfront { color: #8C4FFF; }
.intro-tech-icon.wordpress { color: #21759B; }
.intro-tech-icon.python { color: #3776AB; }
.intro-tech-icon.bash { color: #4EAA25; }
.intro-tech-icon.security { color: #DD344C; }
.intro-tech-icon.linux { color: #FCC624; }

.intro-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.intro-link:hover {
    background: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    border-color: var(--primary-blue);
}

.btn-connect {
    padding: 12px 24px;
    font-size: 15px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-connect:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Glass card for right column */
.intro-right {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 56px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.intro-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.9;
}

/* Stats in glass card */
.intro-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.intro-stat {
    flex: 1;
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.intro-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.intro-stat-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
    opacity: 0.9;
}

.intro-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.intro-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.intro-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-cta .btn {
    padding: 14px 32px;
    font-size: 16px;
}

.intro-cta .intro-link {
    width: 52px;
    height: 52px;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a1f2e 0%, #252b3d 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-accent {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.section-accent span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.section-accent span:nth-child(1) { background: var(--primary-blue); }
.section-accent span:nth-child(2) { background: linear-gradient(135deg, var(--primary-blue), var(--gold-accent)); }
.section-accent span:nth-child(3) { background: var(--gold-accent); }

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--secondary-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.services-grid-cta {
    text-align: center;
    margin-top: 64px;
}

.services-grid-cta .service-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.services-grid-cta .service-link-btn-cta {
    background: var(--gold-accent);
    color: var(--dark-base);
    border: 2px solid var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.services-grid-cta .service-link-btn-cta:hover {
    background: transparent;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.services-grid-cta .service-link-btn i {
    font-size: 12px;
}

/* Featured cards - first two */
.service-card.featured {
    grid-column: span 1;
    padding: 56px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card.featured:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card.featured .service-icon {
    width: 100px;
    height: 100px;
    font-size: 44px;
}

.service-card.featured .service-title {
    font-size: 30px;
    margin-bottom: 18px;
}

.service-card.featured .service-description {
    font-size: 16px;
}

/* Regular cards - 4 in a row below */
.services-grid-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.services-grid-secondary .service-card {
    padding: 32px 24px;
}

.services-grid-secondary .service-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 20px;
}

.services-grid-secondary .service-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.services-grid-secondary .service-description {
    font-size: 14px;
    margin-bottom: 16px;
}

/* Unique icon colors */
.service-icon.aws { color: #FF9900; background: linear-gradient(135deg, rgba(255, 153, 0, 0.1), rgba(255, 153, 0, 0.05)); }
.service-icon.migration { color: #10B981; background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05)); }
.service-icon.wordpress { color: #21759B; background: linear-gradient(135deg, rgba(33, 117, 155, 0.1), rgba(33, 117, 155, 0.05)); }
.service-icon.devops { color: #8B5CF6; background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05)); }
.service-icon.security { color: #EF4444; background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05)); }
.service-icon.cost { color: #06B6D4; background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05)); }

.service-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-card-header-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 16px;
}

.service-card-header-row::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.service-card-header-row .service-card-header {
    margin-bottom: 0;
}

.service-header-intro {
    flex: 1;
    max-width: 50%;
    min-width: 260px;
    margin-left: auto;
}

/* Override later .service-card .service-description* rules (higher specificity) */
.service-card .service-header-intro .service-description {
    margin-top: 0;
    margin-bottom: 0;
}

.service-card .service-header-intro .service-description + .service-description {
    margin-top: 0;
}

.service-card .service-header-intro .service-description-lead {
    margin-top: 0;
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
}

.service-card-header::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.service-card-header-row .service-card-header::after {
    display: none;
}

.service-card-header-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    flex: 1;
    position: relative;
    min-height: 72px;
}

.service-card-header-text .service-title {
    margin-bottom: 0;
    line-height: 1.2;
}

/* Override later .service-card .service-subtitle margin (higher specificity) */
.service-card .service-card-header-text .service-subtitle {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 17px;
    line-height: 1.25;
}

/* Single divider only: hide subtitle ::after when inside header (higher specificity) */
.service-card-header .service-card-header-text .service-subtitle::after {
    display: none !important;
}

.service-card-header .service-icon {
    margin: 0;
    flex-shrink: 0;
}

.service-card.featured .service-card-header .service-icon {
    width: 72px;
    height: 72px;
    font-size: 32px;
}

.service-card-header .service-title {
    margin-bottom: 0;
    flex: 1;
}

.service-card .service-title {
    color: var(--white);
}

.service-card .service-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-card .service-subtitle::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 28px 0 0;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold-accent));
    opacity: 0.8;
}

.service-card.featured .service-subtitle {
    font-size: 19px;
}

.service-card.featured .service-card-header-text .service-subtitle {
    font-size: 17px;
    margin-bottom: 0;
}

.service-card .service-description {
    color: rgba(255, 255, 255, 0.7);
}

.service-card .service-description + .service-description {
    margin-top: 20px;
}

.service-card .service-intro-lines {
    margin-bottom: 4px;
}

.service-card .service-intro-lines .service-description {
    margin-bottom: 0;
}

.service-card .service-intro-lines .service-description + .service-description {
    margin-top: 8px;
}

.service-card .service-description-lead {
    margin-top: 24px;
}

/* Website Care intro block: no bullets */
.service-care-intro {
    margin-bottom: 0;
}

.service-care-intro .service-care-intro-opening {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.service-care-intro .service-care-intro-needs {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-style: italic;
}

.service-care-intro .service-care-intro-lead {
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.service-care-intro .service-care-intro-closing {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-accent);
    margin: 0;
    line-height: 1.5;
}

/* Website Builds intro block — same styling as Website Care intro */
.service-builds-intro {
    margin-bottom: 0;
}

.service-builds-intro .service-builds-intro-opening {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.service-builds-intro .service-builds-intro-second {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 16px 0;
    line-height: 1.5;
    font-style: italic;
}

.service-builds-intro .service-builds-intro-lead {
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.service-card .service-options-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 40px;
    margin-bottom: 16px;
}

.service-card .service-key-points {
    list-style: none;
    margin: 16px 0 0 0;
    padding: 0;
}

.service-card .service-key-points li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.service-card .service-key-points li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.service-card .service-key-points + .service-description-lead,
.service-card .service-key-points + .service-key-points {
    margin-top: 20px;
}

.service-card .service-key-points:last-of-type {
    margin-bottom: 4px;
}

.service-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.service-card .service-option {
    margin-bottom: 0;
    padding-left: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.25);
}

.service-card .service-options-grid .service-option:last-of-type {
    margin-bottom: 0;
}

.service-card .service-option-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 4px 0;
}

.service-card .service-option-tagline {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 6px 0;
}

.service-card .service-option-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Condensed options grid for Website Care (4 options) */
.service-card--care .service-options-label {
    margin-top: 24px;
    margin-bottom: 10px;
}

.service-card--care .service-options-grid {
    gap: 16px;
}

.service-card--care .service-option {
    padding-left: 10px;
    border-left-width: 2px;
}

.service-card--care .service-option-title {
    font-size: 14px;
    margin-bottom: 2px;
}

.service-card--care .service-option-tagline {
    font-size: 12px;
    margin-bottom: 4px;
}

.service-card--care .service-option-desc {
    font-size: 13px;
    line-height: 1.45;
}

.service-card-cta-wrap {
    margin-top: 48px;
    text-align: right;
}

/* Push CTA to bottom of featured cards */
.service-card.featured .service-card-cta-wrap {
    margin-top: auto;
    padding-top: 48px;
}

.service-card-cta-in-header {
    margin-top: 0;
    margin-left: auto;
}

.service-intro-full {
    width: 100%;
    margin-top: 28px;
    margin-bottom: 0;
}

/* Website Builds: match Website Care spacing (intro → 24px → content, label 24px/10px) */
.service-card--builds .service-intro-full {
    margin-top: 12px;
    margin-bottom: 0;
}

.service-card--builds .service-options-label {
    margin-top: 24px;
    margin-bottom: 10px;
}

.service-card .service-link-btn {
    margin-top: 0;
}

.service-card .service-link {
    color: var(--primary-blue);
}

.service-card .service-link:hover {
    color: #60A5FA;
}

.service-card .service-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card .service-link-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

/* CTA variant: gold fill (clear call-to-action) */
.service-card .service-link-btn-cta {
    background: var(--gold-accent);
    color: var(--dark-base);
    border: 2px solid var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.service-card .service-link-btn-cta:hover {
    background: transparent;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.service-card .service-link-btn i {
    font-size: 12px;
}

/* Staggered fade-in for service cards */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-section.animate .service-card {
    opacity: 1;
    transform: translateY(0);
}

/* Featured cards animate first */
.services-section.animate .services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-section.animate .services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }

/* Secondary cards animate after */
.services-section.animate .services-grid-secondary .service-card:nth-child(1) { transition-delay: 0.3s; }
.services-section.animate .services-grid-secondary .service-card:nth-child(2) { transition-delay: 0.4s; }
.services-section.animate .services-grid-secondary .service-card:nth-child(3) { transition-delay: 0.5s; }
.services-section.animate .services-grid-secondary .service-card:nth-child(4) { transition-delay: 0.6s; }

.services-section.animate .service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-blue);
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon.aws { background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), rgba(255, 153, 0, 0.1)); }
.service-card:hover .service-icon.migration { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1)); }
.service-card:hover .service-icon.wordpress { background: linear-gradient(135deg, rgba(33, 117, 155, 0.2), rgba(33, 117, 155, 0.1)); }
.service-card:hover .service-icon.devops { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1)); }
.service-card:hover .service-icon.security { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1)); }
.service-card:hover .service-icon.cost { background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1)); }

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-base);
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-link:hover {
    gap: 10px;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-section .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.services-section .btn-outline:hover {
    background: var(--white);
    color: var(--dark-base);
}

/* ================================
   PROJECTS SECTION (Light section for contrast)
   ================================ */
.projects-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.projects-section .section-title {
    color: var(--dark-base);
}

.projects-section .section-subtitle {
    color: var(--secondary-text);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--borders);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-blue);
}

.projects-section.animate .project-card {
    opacity: 1;
    transform: translateY(0);
}

.projects-section.animate .project-card:nth-child(1) { transition-delay: 0.1s; }
.projects-section.animate .project-card:nth-child(2) { transition-delay: 0.2s; }

.projects-section.animate .project-card:hover {
    transform: translateY(-8px);
}

.project-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--primary-blue), var(--hover-blue));
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: 'View Project →';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-image::after {
    opacity: 1;
}

.project-card:hover .project-placeholder {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 64px;
    color: var(--white);
    opacity: 0.8;
}

.project-content {
    padding: 32px;
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-base);
    margin-bottom: 12px;
}

.project-description {
    font-size: 16px;
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

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

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

.projects-section .btn-primary:hover {
    background: var(--hover-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* ================================
   SOCIAL PROOF SECTION
   ================================ */
.social-proof-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #363d52 0%, #424a60 50%, #4a5268 100%);
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.social-proof-section .section-title {
    color: var(--white);
}

.social-proof-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Side-by-side layout */
.clients-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Scroll animations */
.social-proof-section .certification-card,
.social-proof-section .trusted-by,
.social-proof-section .featured-case-study,
.social-proof-section .other-clients {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-proof-section.animate .certification-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.social-proof-section.animate .trusted-by {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.social-proof-section.animate .featured-case-study {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.social-proof-section.animate .other-clients {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.social-proof-section .clients-summary-bar,
.social-proof-section .testimonials-preview {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-proof-section.animate .clients-summary-bar {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.social-proof-section.animate .testimonials-preview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Featured Case Study */
.featured-case-study {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-logo {
    flex-shrink: 0;
}

.case-study-logo img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

.case-study-info {
    flex: 1;
}

.case-study-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.case-study-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.case-study-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.case-study-stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.case-study-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.case-study-description {
    margin-bottom: 20px;
}

.case-study-description p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
}

.case-study-sites {
    margin-bottom: 20px;
    text-align: center;
}

.case-study-sites-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 12px;
}

.case-study-sites-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.case-study-sites-list a {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-study-sites-list a:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.case-study-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.case-study-tag {
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-study-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 20px;
}

.featured-case-study {
    position: relative;
}

/* Other Clients - Stacked on right */
.other-clients {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.other-clients-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.other-clients-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.other-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--borders);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 140px;
}

.other-client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.other-client-logo img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Client Cards - Compact stacked style */
.client-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.client-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.client-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.client-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-self: center;
}

.client-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.client-icon-btn:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--dark-base);
    transform: translateY(-2px);
}

.client-card-logo {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.client-card-info {
    flex: 1;
    min-width: 0;
}

.client-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.client-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.client-card .client-industry-tag {
    position: static;
}

.client-card-role-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.client-card-work {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Summary Stats Bar */
.clients-summary-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.summary-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.summary-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.summary-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.summary-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Industry Tags */
.client-industry-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 9px;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Client Links */
.client-card-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.client-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.client-link-case {
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
}

.client-link-case:hover {
    background: var(--gold-accent);
    color: var(--dark-base);
}

/* Testimonials Preview */
.testimonials-preview {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.testimonials-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.coming-soon-badge {
    font-size: 11px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold-accent), #F59E0B);
    color: var(--dark-base);
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-placeholder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card.placeholder {
    opacity: 0.5;
    filter: blur(2px);
    user-select: none;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    color: var(--gold-accent);
    opacity: 0.6;
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
}

.testimonial-quote p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.certification-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--borders);
}

.certification-card-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-text);
    margin-bottom: 24px;
    font-weight: 600;
}

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

.certification-badge img {
    width: 160px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.certification-badge img:hover {
    transform: scale(1.05);
}

.certification-badge p {
    font-size: 14px;
    color: var(--secondary-text);
    font-weight: 500;
}

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

.trusted-by-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--muted-text);
    margin-bottom: 32px;
}

.trusted-by-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--borders);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 100px;
}

.trusted-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.trusted-logo-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.trusted-logo:hover .trusted-logo-img {
    transform: scale(1.05);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: 100px 20px;
    background: var(--light-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-base);
}

.cta-description {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-section .btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background: var(--hover-blue);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.cta-trust {
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted-text);
    letter-spacing: 0.02em;
}

.cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-section.animate .cta-content {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--dark-base);
    color: var(--white);
    padding: 60px 0 30px;
    padding-bottom: max(30px, env(safe-area-inset-bottom, 0px));
}

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

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--gold-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

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

    .intro-tech {
        justify-content: center;
    }

    .intro-actions {
        justify-content: center;
    }

    .intro-right {
        padding: 36px;
    }

    .intro-cta {
        justify-content: center;
    }

    .intro-stats {
        gap: 12px;
    }

    .intro-stat {
        padding: 16px 12px;
    }

    .intro-stat-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .intro-stat-value {
        font-size: 20px;
    }

    .intro-stat-label {
        font-size: 10px;
    }

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

    .clients-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-case-study {
        height: auto;
    }

    .other-clients {
        height: auto;
    }
}

@media (max-width: 768px) {
    .video-hero-center {
        gap: 30px;
    }

    .video-hero-logo img {
        max-width: 500px;
    }

    .intro-section {
        padding: 80px 20px;
    }

    .intro-name {
        font-size: 42px;
    }

    .intro-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .service-options-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        padding: 40px;
    }

    .service-card.featured .service-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .service-card.featured .service-title {
        font-size: 24px;
    }

    .service-card-header-row {
        gap: 24px;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-study-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .case-study-stat-value {
        font-size: 20px;
    }

    .other-clients-logos {
        flex-wrap: wrap;
        gap: 16px;
    }

    .other-client-logo {
        min-width: 120px;
        padding: 16px 20px;
    }

    .client-cards {
        gap: 12px;
    }

    .clients-summary-bar {
        gap: 24px;
        padding: 20px 24px;
    }

    .summary-stat-number {
        font-size: 24px;
    }

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

    .cta-title {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .video-hero-center {
        gap: 24px;
        padding: 0 20px;
    }

    .video-hero-logo img {
        max-width: 92vw;
        min-width: 300px;
    }

    .video-hero-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .video-hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: auto;
    }

    .intro-name {
        font-size: 32px;
    }

    .intro-subtitle {
        font-size: 18px;
        min-height: 27px;
    }

    .intro-right {
        padding: 24px 20px;
    }

    .intro-cta {
        flex-direction: column;
    }

    .service-card {
        padding: 28px;
    }

    .service-card-header-row {
        gap: 16px;
    }

    .case-study-header {
        flex-direction: column;
        text-align: center;
    }

    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .case-study-stat {
        padding: 12px;
    }

    .case-study-highlights {
        justify-content: center;
    }

    .other-clients-logos {
        flex-direction: column;
        align-items: center;
    }

    .other-client-logo {
        width: 100%;
        max-width: 200px;
    }

    /* Client cards - stack vertically on mobile */
    .client-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
        gap: 12px;
    }

    .client-card-logo {
        width: 50px;
        height: 35px;
    }

    .client-card-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .client-card-name {
        font-size: 14px;
    }

    .client-card-work {
        font-size: 11px;
    }

    .client-card-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 4px;
    }

    .other-clients-title {
        font-size: 14px;
    }
}

/* Disable hover lift effects on touch-only devices */
@media (hover: none) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-gold-outline:hover,
    .btn-connect:hover,
    .intro-tech-icon:hover,
    .intro-link:hover,
    .intro-stat:hover,
    .service-card:hover,
    .services-section.animate .service-card:hover,
    .service-card:hover .service-icon,
    .project-card:hover,
    .projects-section.animate .project-card:hover,
    .other-client-logo:hover,
    .client-icon-btn:hover,
    .trusted-logo:hover,
    .cta-section .btn-primary:hover {
        transform: none;
    }
}

/* Accessible focus outlines for keyboard/assistive navigation */
.btn:focus-visible,
.nav-link:focus-visible,
.service-card a:focus-visible,
.project-card a:focus-visible,
.intro-link:focus-visible,
.client-icon-btn:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 8px;
}
