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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: #FFFFFF;
    min-height: 100vh;
    background: #0B0D17;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 53, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 194, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    padding-top: 0;
}

header {
    margin-bottom: 8px;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 48px auto 0 auto;
    padding: 32px 24px 0 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 36px;
    color: #FFFFFF;
    letter-spacing: 1.5px;
}

.title .highlight {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-title {
    margin-top: 32px;
    margin-bottom: 36px;
    position: relative;
}
.portfolio-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00C2FF 0%, #7F35FF 100%);
    margin: 18px auto 0 auto;
    border-radius: 2px;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation-duration: 28s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.slider-track-left {
    animation-name: slideLeft;
}

.slider-track-right {
    animation-name: slideRight;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(11, 13, 23, 0.9);
    border-radius: 14px;
    border: 1.5px solid rgba(0, 194, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 170px;
    height: 64px;
    backdrop-filter: blur(10px);
}

.logo-item:hover {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(127, 53, 255, 0.1) 100%);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.25);
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(0, 194, 255, 0.5);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .slider-container {
        max-width: 98vw;
        padding: 24px 6vw 0 6vw;
    }

    .slider-track {
        gap: 28px;
    }

    .logo-item {
        min-width: 120px;
        height: 48px;
        padding: 10px 18px;
    }

    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .slider-container {
        padding: 16px 2vw 0 2vw;
    }

    .title {
        font-size: 1.2rem;
    }

    .slider-track {
        gap: 16px;
    }

    .logo-item {
        min-width: 80px;
        height: 32px;
        padding: 6px 8px;
        border-radius: 8px;
    }

    .logo-text {
        font-size: 0.7rem;
    }
}

.title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 36px;
    letter-spacing: 2px;
    position: relative;
}

.title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00C2FF 0%, #7F35FF 100%);
    margin: 18px auto 0 auto;
    border-radius: 2px;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 32px;
    flex-wrap: nowrap;
    margin-bottom: 48px;
}

.step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    background: rgba(11, 13, 23, 0.9);
    border: 1.5px solid rgba(0, 194, 255, 0.3);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.15);
    padding: 32px 20px 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.step:hover {
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.25);
    border-color: rgba(0, 194, 255, 0.5);
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, rgba(11, 13, 23, 0.95) 0%, rgba(0, 194, 255, 0.05) 100%);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.3rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 194, 255, 0.3);
}

.icon-megaphone {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
}

.icon-chart {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
}

.icon-check {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
}

.icon-document {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
}

.icon-report {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 0.98rem;
    color: #A0A0A0;
    line-height: 1.6;
    text-align: center;
}

.arrow {
    position: absolute;
    top: 50%;
    right: -48px;
    width: 56px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
    transform: translateY(-50%);
}

.arrow svg {
    width: 56px;
    height: 24px;
    display: block;
}

.arrow line,
.arrow polygon {
    filter: drop-shadow(0 2px 6px rgba(0, 194, 255, 0.4));
}

.step:last-child .arrow {
    display: none;
}

@media (max-width: 1100px) {
    .process-flow {
        gap: 18px;
    }

    .step {
        min-width: 120px;
        max-width: 170px;
        padding: 24px 8px 20px 8px;
    }
}

@media (max-width: 900px) {
    .process-flow {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        gap: 36px;
    }

    .step {
        max-width: 340px;
        min-width: 0;
    }

    .arrow {
        display: none;
    }
}

/* Update icon content for clarity */
.icon-megaphone::before {
    content: "📢";
}

.icon-chart::before {
    content: "🧪";
}

.icon-check::before {
    content: "🔍";
}

.icon-document::before {
    content: "📝";
}

.icon-report::before {
    content: "📋";
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step {
        max-width: 300px;
    }

    .arrow {
        display: none;
    }

    .step::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 20px;
        background: #667eea;
    }

    .step:last-child::after {
        display: none;
    }
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    background: rgba(11, 13, 23, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 194, 255, 0.15);
    border: 1px solid rgba(0, 194, 255, 0.2);
    transition: all 0.3s ease;
    position: sticky;
    top: 16px;
    z-index: 100;
}

header:hover {
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.25);
    background: rgba(11, 13, 23, 0.98);
    transform: translateY(-2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.logo img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
}

.logo:hover {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15) 0%, rgba(127, 53, 255, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.25);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.logo-subtitle {
    font-size: 14px;
    color: #A0A0A0;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: #A0A0A0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: #00C2FF;
    background: rgba(0, 194, 255, 0.1);
    transform: translateY(-1px);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

nav a:hover::after {
    width: 80%;
}

.btn {
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    border: 2px solid #00C2FF;
    color: #00C2FF;
    background: rgba(0, 194, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 194, 255, 0.4);
    border-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.5);
    background: linear-gradient(135deg, #15E2F5 0%, #00C2FF 100%);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

/* Main Content */
.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0 48px 0;
    min-height: calc(100vh - 100px);
}

.hero {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 90vw;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    padding: 48px 40px 44px 40px;
    background: linear-gradient(120deg, rgba(11, 13, 23, 0.9) 0%, rgba(0, 194, 255, 0.05) 100%);
    border-radius: 14px;
    box-shadow: 0 2px 16px 0 rgba(0, 194, 255, 0.15);
    border: 1px solid rgba(0, 194, 255, 0.2);
    overflow: hidden;
}
.hero::before {
    display: none;
}
.hero > * {
    position: relative;
    z-index: 2;
}
.hero-title, .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: 0.5px;
    text-shadow: none;
    line-height: 1.12;
}
.hero-typewriter-row {
    font-size: clamp(1.3rem, 2.5vw, 2.1rem);
    margin-bottom: 18px;
    color: #A0A0A0;
    font-weight: 700;
    gap: 4px;
    text-shadow: none;
}
.typewriter-number, .typewriter-plus, .typewriter-label {
    color: #FFFFFF !important;
    text-shadow: none;
    font-size: clamp(1.3rem, 2.5vw, 2.1rem);
}
.hero p {
    color: #A0A0A0;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 32px;
    text-shadow: none;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
}
.btn.btn-outline, .btn.btn-primary {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: none;
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: center;
        padding: 24px 4vw 24px 4vw;
    }
    .hero-media {
        margin-right: 0;
        margin-bottom: 18px;
        justify-content: center;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-title, .hero h1 {
        font-size: 2rem;
    }
    .hero-typewriter-row, .typewriter-number, .typewriter-plus, .typewriter-label {
        font-size: 1rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn.btn-outline, .btn.btn-primary {
        font-size: 1rem;
        padding: 10px 18px;
    }
}

/* Auth Widget */
.auth-widget {
    width: 384px;
    flex-shrink: 0;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.08);
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.underline {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 24px;
    border-radius: 1px;
}

.social-login {
    text-align: center;
    margin-bottom: 24px;
}

.social-login p {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 12px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.social-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a2e;
    font-size: 14px;
    transition: all 0.3s;
}

input::placeholder {
    color: #a0aec0;
}

input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.08);
}

.divider {
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding-top: 16px;
    margin-top: 24px;
}

.customize-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.95) 100%);
}

.upload-area {
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.5);
}

.upload-area:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.04);
    transform: translateY(-2px);
}

.upload-area .icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #667eea;
}

.upload-area p {
    font-size: 12px;
    color: #4a5568;
}

/* Mobile */
@media (max-width: 768px) {
    header {
        padding: 16px 20px;
        margin-bottom: 24px;
        position: relative;
        top: 0;
    }

    .logo {
        padding: 6px 8px;
        gap: 8px;
    }

    nav {
        display: none;
    }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .main-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 24px 0;
    }

    .hero {
        max-width: 100%;
        padding: 40px 20px;
        height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-typewriter-row {
        font-size: 1.8rem;
    }

    .auth-widget {
        width: 100%;
        max-width: 400px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 16px;
        border-radius: 12px;
    }

    .logo {
        padding: 4px 6px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

.logo-slider-section {
    width: 100%;
    max-width: 900px;
    margin: 48px auto 0 auto;
    padding: 32px 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
    align-items: center;
}

.logo-track img {
    height: 44px;
    margin: 0 32px;
    filter: grayscale(0.3) brightness(0.8);
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 10px 18px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
    transition: all 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 24px 60px 24px;
    text-align: center;
}

.testimonial-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: calc(33.333% - 22px);
    margin: 0 16px;
    box-sizing: border-box;
    background: rgba(11, 13, 23, 0.95);
    border: 1.5px solid rgba(0, 194, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.15);
    padding: 36px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 210px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.25);
    border-color: rgba(0, 194, 255, 0.4);
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, rgba(11, 13, 23, 0.98) 0%, rgba(0, 194, 255, 0.05) 100%);
}

.testimonial-text {
    font-size: 1.18rem;
    color: #FFFFFF;
    margin-bottom: 22px;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    padding-left: 32px;
}

.testimonial-text::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 2.5rem;
    color: #00C2FF;
    opacity: 0.7;
    font-family: serif;
}

.testimonial-author {
    font-size: 1.05rem;
    color: #00C2FF;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-top: auto;
    text-align: right;
}

.testimonial-slider-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.testimonial-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.testimonial-slider-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.testimonial-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .testimonial-card {
        min-width: calc(50% - 22px);
    }
}

@media (max-width: 700px) {
    .testimonial-card {
        min-width: 100%;
        margin: 0 0 24px 0;
    }
}

.site-footer {
    width: 100%;
    background: rgba(11, 13, 23, 0.95);
    color: #A0A0A0;
    padding: 48px 0 16px 0;
    margin-top: 0;
    border-top: 1px solid rgba(0, 194, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-company {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #00C2FF;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social-icon {
    font-size: 1.4rem;
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-social-icon:hover {
    color: #00C2FF;
}

.footer-bottom {
    text-align: center;
    color: #A0A0A0;
    font-size: 0.95rem;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-nav {
        gap: 18px;
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 0.5px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    text-shadow: 0 4px 24px rgba(76, 110, 245, 0.2);
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
}

.hero-typewriter-row {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 32px 0;
    gap: 2px;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    text-shadow: 0 2px 12px rgba(76, 110, 245, 0.2);
}

.typewriter-number {
    background: linear-gradient(90deg, #00C2FF 0%, #7F35FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00C2FF !important;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 194, 255, 0.25);
}

.typewriter-plus {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-left: 0;
    margin-right: 0.2em;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
    position: relative;
    top: 0;
}

.typewriter-label {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    min-width: 12ch;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
    text-align: left;
    margin-left: 0.1em;
}

.typewriter-label::after {
    content: '';
    display: inline-block;
    width: 1ch;
    height: 1.1em;
    background: none;
    border-right: 2.5px solid #ffffff;
    margin-left: 2px;
    animation: blink-cursor 0.7s steps(1) infinite;
    vertical-align: bottom;
    position: absolute;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .hero-typewriter-row {
        font-size: 1.1rem;
        gap: 1px;
        margin-bottom: 18px;
        justify-content: center;
        text-align: center;
    }

    .typewriter-number {
        font-size: 1.1rem;
        min-width: 0;
    }

    .typewriter-plus {
        font-size: 1.1rem;
        margin-right: 0.1em;
        top: 0;
    }

    .typewriter-label {
        font-size: 1.1rem;
        min-width: 8ch;
        text-align: center;
    }
}

.audit-dashboard-wrapper {
    max-width: 1400px;
    margin: 60px auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.blockchain-audit-card {
    flex: 1;
    min-width: 350px;
    background: rgba(11, 13, 23, 0.95);
    border: 2px solid rgba(0, 194, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.15);
    transition: all 0.3s ease;
}

.blockchain-audit-card:hover {
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.25);
    border-color: rgba(0, 194, 255, 0.4);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(11, 13, 23, 0.98) 0%, rgba(0, 194, 255, 0.05) 100%);
}

.blockchain-audit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 194, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.audit-title-primary {
    font-size: 2.2rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.audit-description-text {
    font-size: 1.1rem;
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.contact-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.severity-analysis-panel {
    flex: 1;
    min-width: 400px;
    background: rgba(11, 13, 23, 0.95);
    border: 2px solid rgba(0, 194, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.15);
    transition: all 0.3s ease;
}

.severity-analysis-panel:hover {
    box-shadow: 0 12px 40px rgba(0, 194, 255, 0.25);
    border-color: rgba(0, 194, 255, 0.4);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(11, 13, 23, 0.98) 0%, rgba(0, 194, 255, 0.05) 100%);
}

.severity-panel-header {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: left;
}

.severity-metrics-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.severity-metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.severity-metric-row:hover {
    background: rgba(0, 194, 255, 0.1);
    transform: translateX(4px);
}

.severity-label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.severity-color-indicator {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.critical-indicator {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.high-indicator {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.medium-indicator {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.low-indicator {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.informational-indicator {
    background: linear-gradient(135deg, #10b981, #059669);
}

.severity-label-text {
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.severity-progress-container {
    flex: 1;
    margin: 0 20px;
    position: relative;
}

.severity-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 194, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.severity-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.critical-progress {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    width: 24.59%;
}

.high-progress {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    width: 14.75%;
}

.medium-progress {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    width: 13.11%;
}

.low-progress {
    background: linear-gradient(90deg, #eab308, #ca8a04);
    width: 8.20%;
}

.informational-progress {
    background: linear-gradient(90deg, #10b981, #059669);
    width: 39.34%;
}

.severity-percentage-value {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    min-width: 60px;
    text-align: right;
}

.security-footer-banner {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15) 0%, rgba(127, 53, 255, 0.15) 100%);
    padding: 8px 16px;
    border-top-left-radius: 12px;
    font-size: 0.85rem;
    color: #00C2FF;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .audit-dashboard-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .audit-title-primary {
        font-size: 1.8rem;
    }

    .severity-panel-header {
        font-size: 1.5rem;
    }

    .blockchain-audit-card,
    .severity-analysis-panel {
        min-width: unset;
        padding: 25px;
    }

    .severity-progress-container {
        margin: 0 15px;
    }
}

/* Animation for progress bars */
@keyframes progressLoad {
    from {
        width: 0;
    }
}

.severity-progress-fill {
    animation: progressLoad 1.5s ease-out;
}

/* Blog Section Styles */
.blog-section {
    width: 100%;
    background: linear-gradient(135deg, rgba(11, 13, 23, 0.95) 0%, rgba(0, 194, 255, 0.05) 100%);
    padding: 80px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 194, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(127, 53, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.blog-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.blog-section-subtitle {
    font-size: 1.1rem;
    color: #A0A0A0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.blog-card {
    background: rgba(11, 13, 23, 0.95);
    border: 2px solid rgba(0, 194, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 194, 255, 0.15);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 194, 255, 0.25);
    border-color: rgba(0, 194, 255, 0.4);
    background: linear-gradient(135deg, rgba(11, 13, 23, 0.98) 0%, rgba(0, 194, 255, 0.05) 100%);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

.blog-content {
    padding: 28px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #718096;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-date::before {
    content: "📅";
    font-size: 0.8rem;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-read-time::before {
    content: "⏱️";
    font-size: 0.8rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00C2FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.blog-link:hover {
    color: #15E2F5;
    transform: translateX(4px);
}

.blog-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

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

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

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
    background: linear-gradient(135deg, #15E2F5 0%, #00C2FF 100%);
}

.blog-cta-button::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-cta-button:hover::after {
    transform: translateX(4px);
}

/* Responsive Design for Blog Section */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-section-title {
        font-size: 2rem;
    }

    .blog-section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .blog-content {
        padding: 24px;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-section-title {
        font-size: 1.8rem;
    }

    .blog-container {
        padding: 0 16px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Audit Process Card Layout */
.process-flow.card-layout {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 48px 0 32px 0;
    flex-wrap: wrap;
}

.process-card {
    background: rgba(11, 13, 23, 0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,194,255,0.10), 0 1.5px 6px 0 rgba(60,72,100,0.06);
    padding: 36px 28px 32px 28px;
    width: 260px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
    position: relative;
}

.process-card .step-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.process-card .step-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #00C2FF;
}

.process-card .step-description {
    font-size: 1rem;
    color: #A0A0A0;
    margin-bottom: 0;
}

.process-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,194,255,0.16), 0 3px 12px 0 rgba(60,72,100,0.10);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
    background: linear-gradient(135deg, rgba(11, 13, 23, 0.98) 0%, rgba(0, 194, 255, 0.05) 100%);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .process-flow.card-layout {
        gap: 20px;
    }
    .process-card {
        width: 220px;
        min-height: 280px;
        padding: 28px 16px 24px 16px;
    }
}
@media (max-width: 700px) {
    .process-flow.card-layout {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .process-card {
        width: 95%;
        min-width: 0;
        max-width: 400px;
    }
}

.process-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.arrow-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 0px;
}

.arrow-down {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 32px;
    margin: 0;
}

@media (max-width: 1100px) {
    .process-row {
        gap: 20px;
    }
}
@media (max-width: 700px) {
    .process-row {
        flex-direction: column;
        gap: 0;
    }
    .arrow-horizontal {
        transform: rotate(90deg);
        margin: 12px 0;
    }
    .arrow-down {
        height: 24px;
    }
}

/* --- Portfolio Section Modern Styles --- */
.portfolio-section {
  max-width: 900px;
  margin: 48px auto 0 auto;
  padding: 32px 24px 0 24px;
  background: rgba(11,13,23,0.8);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,194,255,0.15);
  backdrop-filter: blur(8px);
}
.portfolio-card {
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(11,13,23,0.9);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,194,255,0.15);
  padding: 32px 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.founder-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(102,126,234,0.18);
  border: 4px solid #fff;
  background: #f8faff;
}
.founder-info {
  flex: 1;
  min-width: 220px;
}
.founder-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #FFFFFF;
}
.founder-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00C2FF;
  margin-bottom: 12px;
}
.founder-info p {
  font-size: 1.05rem;
  color: #A0A0A0;
  margin-bottom: 18px;
  line-height: 1.6;
}
.founder-achievements {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.badge {
  background: linear-gradient(90deg, #00C2FF 0%, #7F35FF 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,194,255,0.15);
  letter-spacing: 0.5px;
}
.founder-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232946;
  box-shadow: 0 2px 8px rgba(102,126,234,0.10);
  transition: background 0.2s, box-shadow 0.2s, border 0.2s, transform 0.18s;
  border: none;
  margin: 0 4px;
}
.icon-svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: fill 0.2s;
}
.social-icon:hover {
  background: #fff !important;
  border: 2px solid #0077ff;
  box-shadow: 0 4px 16px rgba(0,119,255,0.18);
  transform: scale(1.12);
}
.social-icon:hover .icon-svg {
  fill: #0077ff;
}
.social-icon.github,
.social-icon.telegram,
.social-icon.linkedin {
  background-color: #232946;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(102,126,234,0.10);
}
.social-icon.github {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M12 2C6.477 2 2 6.484 2 12.021c0 4.428 2.865 8.184 6.839 9.504.5.092.682-.217.682-.482 0-.237-.009-.868-.014-1.703-2.782.605-3.37-1.342-3.37-1.342-.454-1.155-1.11-1.463-1.11-1.463-.908-.62.069-.608.069-.608 1.004.07 1.532 1.032 1.532 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.34-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.987 1.029-2.687-.103-.254-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.025A9.564 9.564 0 0 1 12 6.844c.85.004 1.705.115 2.504.337 1.909-1.295 2.748-1.025 2.748-1.025.545 1.378.202 2.396.1 2.65.64.7 1.028 1.594 1.028 2.687 0 3.847-2.338 4.695-4.566 4.944.36.31.68.92.68 1.855 0 1.338-.012 2.42-.012 2.75 0 .267.18.577.688.48C19.138 20.2 22 16.447 22 12.02 22 6.484 17.523 2 12 2Z"/></svg>');
}
.social-icon.telegram {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M21.944 4.186a1.5 1.5 0 0 0-1.62-.22L3.5 10.7a1.5 1.5 0 0 0 .13 2.8l3.7 1.2 1.4 4.2a1.5 1.5 0 0 0 2.7.3l2-3.2 3.7 2.7a1.5 1.5 0 0 0 2.36-.9l2.5-11a1.5 1.5 0 0 0-.05-.914ZM9.7 16.1l-1.1-3.3 7.6-6.8-6.5 7.5Zm2.1 3.1-.01-.01.01.01Zm7.2-1.2-3.7-2.7a1.5 1.5 0 0 0-2.1.4l-2 3.2-1.4-4.2 9.7-8.7-2.5 11Z"/></svg>');
}
.social-icon.linkedin {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M19 0h-14c-2.76 0-5 2.24-5 5v14c0 2.76 2.24 5 5 5h14c2.76 0 5-2.24 5-5v-14c0-2.76-2.24-5-5-5zm-11 19h-3v-9h3v9zm-1.5-10.28c-.97 0-1.75-.79-1.75-1.75s.78-1.75 1.75-1.75 1.75.79 1.75 1.75-.78 1.75-1.75 1.75zm13.5 10.28h-3v-4.5c0-1.08-.02-2.47-1.5-2.47-1.5 0-1.73 1.17-1.73 2.39v4.58h-3v-9h2.89v1.23h.04c.4-.75 1.38-1.54 2.84-1.54 3.04 0 3.6 2 3.6 4.59v4.72z"/></svg>');
}
.social-icon:hover {
  background: #fff !important;
  box-shadow: 0 4px 16px rgba(0,194,255,0.18);
  border: 2px solid #00C2FF;
  filter: none;
}
.social-icon.github:hover,
.social-icon.telegram:hover,
.social-icon.linkedin:hover {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%230077ff" d="M12 2C6.477 2 2 6.484 2 12.021c0 4.428 2.865 8.184 6.839 9.504.5.092.682-.217.682-.482 0-.237-.009-.868-.014-1.703-2.782.605-3.37-1.342-3.37-1.342-.454-1.155-1.11-1.463-1.11-1.463-.908-.62.069-.608.069-.608 1.004.07 1.532 1.032 1.532 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.34-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.987 1.029-2.687-.103-.254-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.025A9.564 9.564 0 0 1 12 6.844c.85.004 1.705.115 2.504.337 1.909-1.295 2.748-1.025 2.748-1.025.545 1.378.202 2.396.1 2.65.64.7 1.028 1.594 1.028 2.687 0 3.847-2.338 4.695-4.566 4.944.36.31.68.92.68 1.855 0 1.338-.012 2.42-.012 2.75 0 .267.18.577.688.48C19.138 20.2 22 16.447 22 12.02 22 6.484 17.523 2 12 2Z"/></svg>');
}
.social-icon.telegram:hover {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%230077ff" d="M21.944 4.186a1.5 1.5 0 0 0-1.62-.22L3.5 10.7a1.5 1.5 0 0 0 .13 2.8l3.7 1.2 1.4 4.2a1.5 1.5 0 0 0 2.7.3l2-3.2 3.7 2.7a1.5 1.5 0 0 0 2.36-.9l2.5-11a1.5 1.5 0 0 0-.05-.914ZM9.7 16.1l-1.1-3.3 7.6-6.8-6.5 7.5Zm2.1 3.1-.01-.01.01.01Zm7.2-1.2-3.7-2.7a1.5 1.5 0 0 0-2.1.4l-2 3.2-1.4-4.2 9.7-8.7-2.5 11Z"/></svg>');
}
.social-icon.linkedin:hover {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%230077ff" d="M19 0h-14c-2.76 0-5 2.24-5 5v14c0 2.76 2.24 5 5 5h14c2.76 0 5-2.24 5-5v-14c0-2.76-2.24-5-5-5zm-11 19h-3v-9h3v9zm-1.5-10.28c-.97 0-1.75-.79-1.75-1.75s.78-1.75 1.75-1.75 1.75.79 1.75 1.75-.78 1.75-1.75 1.75zm13.5 10.28h-3v-4.5c0-1.08-.02-2.47-1.5-2.47-1.5 0-1.73 1.17-1.73 2.39v4.58h-3v-9h2.89v1.23h.04c.4-.75 1.38-1.54 2.84-1.54 3.04 0 3.6 2 3.6 4.59v4.72z"/></svg>');
}
.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.stat {
  background: rgba(11,13,23,0.9);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,194,255,0.12);
  padding: 24px 32px;
  text-align: center;
  min-width: 160px;
  margin: 8px 0;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00C2FF;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.stat-label {
  font-size: 1.05rem;
  color: #A0A0A0;
  font-weight: 600;
}
@media (max-width: 700px) {
  .portfolio-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 8px;
  }
  .portfolio-section {
    padding: 12px 2vw 0 2vw;
  }
  .portfolio-stats {
    gap: 18px;
  }
  .stat {
    min-width: 120px;
    padding: 16px 10px;
  }
  .founder-image img {
    width: 90px;
    height: 90px;
  }
}

/* --- Professional Logo Slider Styles --- */
.logo-img {
  max-height: 44px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: none;
  border-radius: 10px;
  border: 1.5px solid rgba(102,126,234,0.10);
  box-shadow: 0 2px 8px rgba(102,126,234,0.08);
  padding: 6px 10px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: block;
}
.logo-img:hover {
  box-shadow: 0 6px 24px rgba(102,126,234,0.18);
  border-color: #667eea;
  background: rgba(102,126,234,0.04);
  transform: translateY(-4px) scale(1.07);
}
.logo-item {
  min-width: 120px;
  height: 64px;
  padding: 8px 18px;
  background: transparent;
  border-radius: 16px;
  border: 1.5px solid rgba(102,126,234,0.13);
  box-shadow: 0 2px 10px rgba(102,126,234,0.07);
  margin: 0 10px;
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item:hover {
  background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);
  box-shadow: 0 8px 30px rgba(102,126,234,0.16);
  border-color: #667eea;
  transform: translateY(-4px) scale(1.04);
}
@media (max-width: 900px) {
  .logo-img {
    max-height: 32px;
    max-width: 60px;
    padding: 4px 6px;
  }
  .logo-item {
    min-width: 80px;
    height: 40px;
    padding: 4px 6px;
    border-radius: 10px;
    margin: 0 4px;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes popupIn {
  0% { 
    opacity: 0; 
    transform: scale(0.2) translateY(80px) rotate(-10deg); 
    filter: blur(10px);
  }
  30% { 
    opacity: 0.6; 
    transform: scale(0.8) translateY(-20px) rotate(5deg); 
    filter: blur(5px);
  }
  60% { 
    opacity: 0.9; 
    transform: scale(1.1) translateY(5px) rotate(-2deg); 
    filter: blur(2px);
  }
  100% { 
    opacity: 1; 
    transform: scale(1) translateY(0) rotate(0deg); 
    filter: blur(0px);
  }
}

@keyframes slideInFromLeft {
  0% { 
    opacity: 0; 
    transform: translateX(-150px) scale(0.5); 
    filter: blur(8px);
  }
  50% { 
    opacity: 0.7; 
    transform: translateX(-50px) scale(0.8); 
    filter: blur(4px);
  }
  100% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
    filter: blur(0px);
  }
}

@keyframes slideInFromRight {
  0% { 
    opacity: 0; 
    transform: translateX(150px) scale(0.5); 
    filter: blur(8px);
  }
  50% { 
    opacity: 0.7; 
    transform: translateX(50px) scale(0.8); 
    filter: blur(4px);
  }
  100% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
    filter: blur(0px);
  }
}

@keyframes bounceIn {
  0% { 
    opacity: 0; 
    transform: scale(0.1) translateY(50px); 
    filter: blur(10px);
  }
  40% { 
    opacity: 0.8; 
    transform: scale(1.2) translateY(-15px); 
    filter: blur(3px);
  }
  70% { 
    opacity: 0.9; 
    transform: scale(0.9) translateY(5px); 
    filter: blur(1px);
  }
  100% { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
    filter: blur(0px);
  }
}

@keyframes glowPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6), 0 0 60px rgba(118, 75, 162, 0.4);
  }
}

@keyframes iconFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
  }
  50% { 
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes cardShimmer {
  0% { 
    background-position: -200% center;
  }
  100% { 
    background-position: 200% center;
  }
}

.hero, .hero > * {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(.77,0,.18,1) 0.1s forwards;
}
.hero > *:nth-child(1) { animation-delay: 0.2s; }
.hero > *:nth-child(2) { animation-delay: 0.35s; }
.hero > *:nth-child(3) { animation-delay: 0.5s; }
.hero > *:nth-child(4) { animation-delay: 0.65s; }

.btn {
  transition: transform 0.18s cubic-bezier(.77,0,.18,1), box-shadow 0.18s;
}
.btn:hover, .btn:focus {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(102,126,234,0.13);
}

.title, .portfolio-title, .testimonial-title, .blog-section-title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.title.animated, .portfolio-title.animated, .testimonial-title.animated, .blog-section-title.animated {
  opacity: 1;
  transform: none;
}

.testimonial-card, .portfolio-card, .blog-card, .process-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.testimonial-card.animated, .portfolio-card.animated, .blog-card.animated, .process-card.animated {
  opacity: 1;
  transform: none;
}

/* Audit Process Popup Animations */
.process-card {
  opacity: 0;
  animation: none;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.process-card.animated {
  opacity: 1;
}

.process-card.animated::before {
  left: 100%;
}

.process-card:nth-child(1) {
  animation: popupIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.3s;
}

.process-card:nth-child(3) {
  animation: popupIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.6s;
}

.process-card:nth-child(5) {
  animation: popupIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.9s;
}

.process-card:nth-child(7) {
  animation: popupIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 1.2s;
}

.process-card:nth-child(9) {
  animation: popupIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 1.5s;
}

.arrow-horizontal {
  opacity: 0;
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
}

.arrow-horizontal:nth-child(4) {
  animation-delay: 0.8s;
}

.arrow-horizontal:nth-child(6) {
  animation-delay: 1.1s;
}

.arrow-horizontal:nth-child(8) {
  animation-delay: 1.4s;
}

.arrow-down {
  opacity: 0;
  animation: bounceIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 1.2s;
}

/* Enhanced hover effects for process cards */
.process-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.95);
}

.process-card:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 25px 80px rgba(0, 194, 255, 0.4), 0 10px 30px rgba(127, 53, 255, 0.3);
  z-index: 10;
  animation: glowPulse 2s ease-in-out infinite;
}

.process-card .step-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.process-card:hover .step-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 12px 35px rgba(0, 194, 255, 0.5);
  animation: iconFloat 2s ease-in-out infinite;
}

.process-card .step-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, rgba(0, 194, 255, 0.3), rgba(127, 53, 255, 0.3));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-card:hover .step-icon::after {
  opacity: 1;
}

.process-card .step-title {
  transition: all 0.3s ease;
  color: #232946;
}

.process-card:hover .step-title {
  color: #00C2FF;
  transform: translateY(-2px);
}

.process-card .step-description {
  transition: all 0.3s ease;
  color: #6b7280;
}

.process-card:hover .step-description {
  color: #4a5568;
  transform: translateY(-1px);
}

/* Arrow hover effects */
.arrow-horizontal, .arrow-down {
  transition: none !important;
  filter: none !important;
  transform: none !important;
}

.arrow-horizontal:hover, .arrow-down:hover {
  filter: none !important;
  transform: none !important;
}

.arrow-horizontal svg, .arrow-down svg {
  opacity: 1 !important;
  filter: none !important;
}

.arrow-horizontal svg line,
.arrow-horizontal svg polygon,
.arrow-down svg line,
.arrow-down svg polygon {
  opacity: 1 !important;
  filter: none !important;
}

/* Shimmer effect for process cards */
.process-card.animated {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.95) 100%);
  background-size: 200% 200%;
  animation: cardShimmer 3s ease-in-out infinite;
}

/* --- Audit Process Row Improvements --- */
#audit-process .process-flow.card-layout {
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 12px;
}
#audit-process .process-card {
  min-width: 120px;
  min-height: 120px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
#audit-process .arrow-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 56px;
  min-height: 24px;
  margin: 0 0px;
  position: relative;
  top: 0;
}
@media (max-width: 900px) {
  #audit-process .process-flow.card-layout {
    gap: 12px;
    padding-bottom: 8px;
  }
  #audit-process .process-card {
    min-width: 100px;
    min-height: 100px;
    padding: 16px 6px;
  }
  #audit-process .arrow-horizontal {
    min-width: 36px;
    min-height: 18px;
  }
}
@media (max-width: 600px) {
  #audit-process .process-flow.card-layout {
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  #audit-process .process-card {
    min-width: 90px;
    min-height: 90px;
    padding: 10px 2px;
  }
  #audit-process .arrow-horizontal {
    min-width: 24px;
    min-height: 12px;
  }
}

/* Strong override to keep arrows always visible and static */
.arrow-horizontal, .arrow-horizontal * {
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
  visibility: visible !important;
}

/* --- Portfolio Previous Reports Styling --- */
.portfolio-reports {
  margin: 32px 0 0 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,194,255,0.08) 0%, rgba(127,53,255,0.06) 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,194,255,0.08);
  padding: 28px 12px 20px 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-reports h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00C2FF;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.portfolio-reports-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 6px;
}
.portfolio-reports-link {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 24px;
  background: linear-gradient(90deg, #00C2FF 0%, #7F35FF 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,194,255,0.10);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
  border: none;
  outline: none;
}
.portfolio-reports-link:hover {
  background: linear-gradient(90deg, #15E2F5 0%, #00C2FF 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px rgba(0,194,255,0.18);
}
@media (max-width: 600px) {
  .portfolio-reports {
    padding: 16px 4px 12px 4px;
    max-width: 98vw;
  }
  .portfolio-reports-link {
    padding: 10px 14px;
    font-size: 0.98rem;
  }
  .portfolio-reports-links {
    gap: 10px;
  }
}

/* --- Testimonial Avatar Styling --- */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,194,255,0.13);
  border: 3px solid #fff;
  margin-bottom: 18px;
  background: #f8faff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .testimonial-avatar {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .testimonial-avatar {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }
}

/* --- Testimonial Actual Image Styling --- */
.testimonial-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0,194,255,0.13);
  border: 2.5px solid #fff;
  margin-bottom: 18px;
  background: #f8faff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.3s, transform 0.2s;
}
.testimonial-card:hover .testimonial-image {
  box-shadow: 0 8px 32px rgba(0,194,255,0.22);
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .testimonial-image {
    max-width: 220px;
    margin-bottom: 12px;
  }
}
@media (max-width: 600px) {
  .testimonial-image {
    max-width: 98vw;
    border-radius: 12px;
    margin-bottom: 8px;
  }
}

#audit-process {
  background: transparent !important;
}

#audit-process .process-flow.card-layout {
  background: transparent !important;
}

#audit-process .process-card {
  background: rgba(11, 13, 23, 0.95) !important;
  /* already set, but reinforce for specificity */
}

#audit-process .process-card,
#audit-process .process-card .step-title,
#audit-process .process-card .step-description {
  color: #fff !important;
}

/* --- Trusted By Slider Custom Styles --- */
#trusted-slider-section {
  width: 100%;
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 32px 24px 0 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#trusted-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  background: none;
  border-radius: 18px;
}
#trusted-slider-track {
  display: flex;
  gap: 48px;
  transition: transform 1.3s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
  flex-shrink: 0;
  white-space: nowrap;
}
#trusted-slider-section .logo-item {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-width: unset !important;
  max-width: unset !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#trusted-slider-section .logo-item:hover {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(127, 53, 255, 0.1) 100%);
  box-shadow: 0 8px 30px rgba(0, 194, 255, 0.25);
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(0, 194, 255, 0.5);
}
#trusted-slider-section .logo-img {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  max-height: 64px !important;
  max-width: 140px !important;
  transition: transform 0.3s;
  display: block;
}
#trusted-slider-section .logo-img:hover {
  max-height: 64px !important;
  max-width: 140px !important;
  transform: scale(1.07);
}
#trusted-slider-section .logo-item {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
@media (max-width: 900px) {
  #trusted-slider-track {
    gap: 28px;
  }
  #trusted-slider-section .logo-item {
    min-width: 120px;
    max-width: 120px;
    height: 48px;
    padding: 10px 18px;
  }
  #trusted-slider-section .logo-img {
    max-height: 32px;
    max-width: 60px;
    padding: 4px 6px;
  }
}
@media (max-width: 600px) {
  #trusted-slider-track {
    gap: 16px;
  }
  #trusted-slider-section .logo-item {
    min-width: 80px;
    max-width: 80px;
    height: 32px;
    padding: 6px 8px;
    border-radius: 8px;
  }
  #trusted-slider-section .logo-img {
    max-height: 24px;
    max-width: 40px;
    padding: 2px 3px;
  }
}

/* --- Trusted By Slider Dots --- */
.trusted-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.trusted-slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.18);
  border: 2px solid #00C2FF;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,194,255,0.10);
}
.trusted-slider-dot.active {
  background: linear-gradient(135deg, #00C2FF 0%, #7F35FF 100%);
  border-color: #7F35FF;
  transform: scale(1.18);
  box-shadow: 0 4px 16px rgba(0,194,255,0.18);
}
@media (max-width: 900px) {
  .trusted-slider-dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 600px) {
  .trusted-slider-dot {
    width: 8px;
    height: 8px;
  }
}

/* --- Hamburger Menu and Mobile Nav --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  margin-left: 16px;
}
.hamburger .bar {
  width: 28px;
  height: 3.5px;
  background: #00C2FF;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  header .btn.btn-primary {
    display: none !important;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 82vw;
  max-width: 340px;
  height: 100vh;
  background: rgba(11, 13, 23, 0.98);
  box-shadow: -4px 0 32px rgba(0,194,255,0.18);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-nav.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 28px 24px 28px;
  height: 100%;
  align-items: flex-start;
  position: relative;
}
.close-mobile-nav {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #00C2FF;
  cursor: pointer;
  z-index: 10;
  padding: 0 8px;
  line-height: 1;
}
.mobile-nav-link {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  display: block;
}
.mobile-nav-link:hover {
  background: linear-gradient(90deg, #00C2FF 0%, #7F35FF 100%);
  color: #fff;
}
@media (min-width: 901px) {
  .mobile-nav {
    display: none !important;
  }
}

.hero-media {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}
.hero-gif {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,194,255,0.13);
    background: #0B0D17;
}
.hero-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: center;
        padding: 24px 4vw 24px 4vw;
    }
    .hero-media {
        margin-right: 0;
        margin-bottom: 18px;
        justify-content: center;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
}

/* --- HERO SECTION PROFESSIONAL LAYOUT OVERRIDES --- */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    min-height: 520px;
    text-align: left;
    margin: 0 auto;
    padding: 72px 56px 72px 56px;
    background: linear-gradient(120deg, rgba(11, 13, 23, 0.92) 0%, rgba(0, 194, 255, 0.07) 100%);
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(0, 194, 255, 0.18);
    border: 1.5px solid rgba(0, 194, 255, 0.22);
    overflow: hidden;
    gap: 56px;
}
.hero-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-width: 0;
    max-width: 600px;
}
.hero-title, .hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 18px;
    margin-top: 0;
    letter-spacing: 0.5px;
    line-height: 1.12;
    text-shadow: 0 4px 24px rgba(76, 110, 245, 0.18);
}
.hero-typewriter-row {
    font-size: clamp(1.3rem, 2.5vw, 2.1rem);
    margin-bottom: 18px;
    color: #A0A0A0;
    font-weight: 700;
    gap: 4px;
    text-shadow: none;
}
.hero p {
    color: #A0A0A0;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 32px;
    text-shadow: none;
    max-width: 90%;
    margin-left: 0;
    margin-right: 0;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 0;
}
.hero-media {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 420px;
    height: 100%;
}
.hero-gif {
    width: 100%;
    max-width: 340px;
    max-height: 400px;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,194,255,0.13);
    background: #0B0D17;
    margin: 0 auto;
}
@media (max-width: 1100px) {
    .hero {
        padding: 32px 12px 32px 12px;
        gap: 24px;
        min-height: 380px;
    }
    .hero-media {
        max-width: 260px;
    }
    .hero-gif {
        max-width: 200px;
        max-height: 220px;
    }
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 4vw 24px 4vw;
        min-height: unset;
        gap: 18px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .hero-media {
        margin-right: 0;
        margin-bottom: 0;
        max-width: 320px;
        width: 100%;
    }
    .hero-gif {
        max-width: 180px;
        max-height: 180px;
    }
}
@media (max-width: 600px) {
    .hero {
        padding: 12px 2vw 18px 2vw;
        gap: 10px;
    }
    .hero-title, .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .hero-typewriter-row {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .hero-buttons {
        gap: 8px;
    }
    .hero-media {
        max-width: 120px;
    }
    .hero-gif {
        max-width: 100px;
        max-height: 100px;
    }
}

.social-icon.linkedin {
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%230A66C2" d="M19 0h-14c-2.76 0-5 2.24-5 5v14c0 2.76 2.24 5 5 5h14c2.76 0 5-2.24 5-5v-14c0-2.76-2.24-5-5-5zm-11 19h-3v-9h3v9zm-1.5-10.28c-.97 0-1.75-.79-1.75-1.75s.78-1.75 1.75-1.75 1.75.79 1.75 1.75-.78 1.75-1.75 1.75zm13.5 10.28h-3v-4.5c0-1.08-.02-2.47-1.5-2.47-1.5 0-1.73 1.17-1.73 2.39v4.58h-3v-9h2.89v1.23h.04c.4-.75 1.38-1.54 2.84-1.54 3.04 0 3.6 2 3.6 4.59v4.72z"/></svg>');
}

/* --- MOBILE RESPONSIVENESS IMPROVEMENTS --- */

/* 1. General: Prevent horizontal scroll and improve base font size */
@media (max-width: 600px) {
  html, body {
    font-size: 15px;
    overflow-x: hidden !important;
  }
  body {
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* 2. Header: Stack elements, reduce padding, make nav vertical */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 8px;
    border-radius: 10px;
    gap: 8px;
  }
  .logo {
    padding: 2px 4px;
    gap: 6px;
  }
  .logo img {
    width: 40px !important;
    height: 40px !important;
  }
}

/* 3. Hero Section: Stack content, reduce padding, scale text and image */
@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 12px 2vw 18px 2vw;
    gap: 10px;
    min-height: unset;
    border-radius: 12px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 0;
  }
  .hero-title, .hero h1 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    margin-top: 0;
  }
  .hero-typewriter-row {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 12px;
    max-width: 98vw;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 0;
  }
  .btn.btn-outline, .btn.btn-primary {
    font-size: 1rem;
    padding: 10px 18px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .hero-media {
    max-width: 120px;
    margin: 0 auto;
  }
  .hero-gif {
    max-width: 100px;
    max-height: 100px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/* 4. Slider Section: Reduce logo size and gap */
@media (max-width: 600px) {
  #trusted-slider-section {
    padding: 12px 2vw 0 2vw;
  }
  #trusted-slider-track {
    gap: 8px;
  }
  #trusted-slider-section .logo-item {
    min-width: 60px;
    max-width: 60px;
    height: 28px;
    padding: 2px 2px;
    border-radius: 6px;
  }
  #trusted-slider-section .logo-img {
    max-height: 18px;
    max-width: 32px;
    padding: 1px 2px;
  }
}

/* 5. Testimonial Section: Stack cards, scale text, fit images */
@media (max-width: 600px) {
  /* Fix testimonial slider/cards always visible and stacked */
  .testimonial-slider {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: visible !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .testimonial-card {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 0 12px 0 !important;
    padding: 12px 4px 10px 4px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .testimonial-slider-container {
    overflow: visible !important;
  }
  .testimonial-section {
    padding: 0 4vw 30px 4vw;
    margin-top: 30px;
  }
  .testimonial-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .testimonial-slider-container {
    width: 100%;
    padding: 0;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .testimonial-card {
    min-width: 100%;
    margin: 0 0 18px 0;
    padding: 18px 8px 14px 8px;
    border-radius: 10px;
    font-size: 0.98rem;
  }
  .testimonial-text {
    font-size: 1rem;
    padding-left: 18px;
  }
  .testimonial-author {
    font-size: 0.95rem;
  }
  .testimonial-slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

/* 6. Audit Process: Stack cards, reduce gap, fit arrows */
@media (max-width: 600px) {
  #audit-process .process-flow.card-layout {
    flex-direction: column !important;
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 6px;
  }
  #audit-process .process-card {
    min-width: 90px;
    min-height: 90px;
    padding: 10px 2px;
    width: 98vw;
    max-width: 98vw;
    border-radius: 10px;
  }
  #audit-process .arrow-horizontal {
    min-width: 18px;
    min-height: 8px;
    margin: 0;
  }
}

/* 7. Portfolio Section: Stack, scale images, fit text */
@media (max-width: 600px) {
  .portfolio-section {
    padding: 8px 2vw 0 2vw;
    border-radius: 12px;
  }
  .portfolio-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 4px;
    border-radius: 10px;
  }
  .founder-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .founder-info h2 {
    font-size: 1.1rem;
  }
  .founder-info h4 {
    font-size: 0.95rem;
  }
  .founder-info p {
    font-size: 0.95rem;
  }
  .founder-achievements {
    gap: 6px;
  }
  .badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 10px;
  }
  .founder-social {
    gap: 8px;
  }
  .social-icon {
    width: 28px;
    height: 28px;
  }
  .icon-svg {
    width: 18px;
    height: 18px;
  }
  .portfolio-stats {
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 10px;
  }
  .stat {
    min-width: 70px;
    padding: 8px 4px;
    border-radius: 8px;
  }
  .stat-number {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.85rem;
  }
  .portfolio-reports {
    padding: 8px 2px 6px 2px;
    max-width: 98vw;
    border-radius: 10px;
  }
  .portfolio-reports-link {
    padding: 6px 10px;
    font-size: 0.85rem;
    border-radius: 12px;
  }
  .portfolio-reports-links {
    gap: 6px;
  }
}

/* 8. Blog Section: Stack, scale cards, fit text */
@media (max-width: 600px) {
  .blog-section {
    padding: 24px 0;
    margin-top: 24px;
  }
  .blog-section-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .blog-section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }
  .blog-card {
    max-width: 98vw;
    margin: 0 auto;
    border-radius: 10px;
  }
  .blog-content {
    padding: 10px;
  }
  .blog-title {
    font-size: 1rem;
  }
  .blog-excerpt {
    font-size: 0.85rem;
  }
  .blog-meta {
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
  }
  .blog-link {
    font-size: 0.85rem;
    padding: 4px 0;
  }
  .blog-cta-button {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
}

/* 9. Footer: Stack, reduce padding, fit links */
@media (max-width: 600px) {
  .site-footer {
    padding: 18px 0 8px 0;
    border-radius: 10px;
  }
  .footer-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 0 8px !important;
    text-align: center !important;
  }
  .footer-brand {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .footer-logo {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 4px !important;
  }
  .footer-company {
    font-size: 1.1rem !important;
  }
  .footer-nav {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
    font-size: 0.98rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer-nav a {
    font-size: 0.98rem !important;
    padding: 2px 4px !important;
  }
  .footer-social {
    gap: 10px !important;
    justify-content: center !important;
    margin: 0 !important;
  }
  .footer-social-icon {
    font-size: 1.2rem !important;
  }
  .footer-bottom {
    font-size: 0.9rem !important;
    margin-top: 10px !important;
    text-align: center !important;
  }
}

/* 10. Extra Small Devices (375px and below): Tighten everything */
@media (max-width: 375px) {
  .hero-title, .hero h1, .title, .portfolio-title, .testimonial-title, .blog-section-title {
    font-size: 1rem !important;
  }
  .btn, .btn-primary, .btn-outline {
    font-size: 0.85rem !important;
    padding: 7px 8px !important;
  }
  .stat-number {
    font-size: 0.9rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .blog-title, .blog-excerpt, .blog-link {
    font-size: 0.8rem !important;
  }
  .testimonial-text {
    font-size: 0.85rem;
  }
  .testimonial-author {
    font-size: 0.8rem;
  }
}

/* --- END MOBILE RESPONSIVENESS IMPROVEMENTS --- */

/* --- MOBILE POLISH: HEADER, HERO, SLIDER, TESTIMONIAL, PROCESS ARROW --- */

@media (max-width: 600px) {
  /* 1. Header: Reduce vertical gap */
  header {
    margin-bottom: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    gap: 4px;
  }

  /* 2. Hero: Reduce vertical gap */
  .main-content {
    padding: 12px 0 12px 0;
    min-height: unset;
  }
  .hero {
    margin-bottom: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 6px;
  }

  /* 3. Logo Slider: Reduce gap, increase logo size */
  #trusted-slider-section {
    margin-top: 8px;
    padding-top: 8px;
    padding-bottom: 0;
  }
  #trusted-slider-track {
    gap: 16px; /* increased gap for larger logos */
  }
  #trusted-slider-section .logo-item {
    min-width: 90px;
    max-width: 90px;
    height: 40px;
    padding: 6px 8px;
    border-radius: 10px;
  }
  #trusted-slider-section .logo-img {
    max-height: 32px;
    max-width: 60px;
    padding: 2px 4px;
  }

  /* 4. Testimonial Section: Improve stacking, spacing, font */
  .testimonial-section {
    padding: 0 2vw 18px 2vw;
    margin-top: 12px;
  }
  .testimonial-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .testimonial-slider-container {
    width: 100%;
    padding: 0;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .testimonial-card {
    min-width: 100%;
    margin: 0 0 12px 0;
    padding: 12px 4px 10px 4px;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .testimonial-text {
    font-size: 0.95rem;
    padding-left: 12px;
  }
  .testimonial-author {
    font-size: 0.9rem;
  }
  .testimonial-slider-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  /* 5. Audit Process: Show downward arrows, hide horizontal arrows */
  #audit-process .arrow-horizontal {
    display: none !important;
  }
  #audit-process .arrow-down {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    height: 24px;
    margin: 0;
  }
}

/* Always hide .arrow-down on desktop */
@media (min-width: 601px) {
  #audit-process .arrow-down {
    display: none !important;
  }
}

/* --- END MOBILE POLISH --- */

@media (max-width: 600px) {
  /* 1. Larger font size for titles and headings on mobile */
  .title,
  .portfolio-title,
  .testimonial-title,
  .blog-section-title,
  .hero-title,
  .hero h1 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
  }

  /* 2. Make logo images in the slider larger on mobile */
  #trusted-slider-section .logo-item {
    min-width: 120px !important;
    max-width: 120px !important;
    height: 56px !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
  }
  #trusted-slider-section .logo-img {
    max-height: 48px !important;
    max-width: 100px !important;
    padding: 4px 8px !important;
  }
}

@media (max-width: 600px) {
  /* HERO SECTION: Improved spacing and font sizes for mobile */
  .hero-title, .hero h1 {
    font-size: 1.35rem !important;
    margin-bottom: 10px !important;
    line-height: 1.18 !important;
  }
  .hero-typewriter-row {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
    display: block !important;
  }
  .hero p {
    font-size: 1rem !important;
    margin-bottom: 18px !important;
    margin-top: 0 !important;
    line-height: 1.5 !important;
  }
  .hero-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
  }
}

@media (max-width: 600px) {
  /* HERO SECTION: Larger title for mobile */
  .hero-title, .hero h1 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
  }

  /* HEADER: Hamburger menu on right */
  header {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
  }
  .hamburger {
    order: 2;
    margin-left: auto !important;
    margin-right: 0 !important;
    align-self: center !important;
    display: flex !important;
  }
}

@media (max-width: 600px) {
  /* HERO GIF: Make the gif larger on mobile */
  .hero-media {
    max-width: 240px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }
  .hero-gif {
    max-width: 220px !important;
    max-height: 220px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

@media (max-width: 600px) {
  /* GAP between hero buttons and gif */
  .hero-buttons {
    margin-bottom: 24px !important;
  }
  .hero-media {
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  /* Hide testimonial slider arrows on mobile */
  .testimonial-slider-nav,
  .testimonial-slider-btn {
    display: none !important;
  }

  /* Vertically space .arrow-down in process section */
  #audit-process .arrow-down {
    margin: 8px 0 !important;
  }
}

@media (max-width: 600px) {
  /* HERO SECTION: Even larger text for mobile */
  .hero-title, .hero h1 {
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
  }
  .hero-typewriter-row {
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
    display: block !important;
  }
  .hero p {
    font-size: 1.15rem !important;
    margin-bottom: 18px !important;
    margin-top: 0 !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 600px) {
  /* SECTION HEADINGS: Larger font size for all major headings on mobile */
  .title,
  .portfolio-title,
  .testimonial-title,
  .blog-section-title,
  h1,
  h2,
  h3 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    margin-bottom: 18px !important;
  }
}

/* --- FIX: Always show audit process arrows, even on hover/animation --- */
.arrow-down, .arrow-horizontal, .arrow-down *, .arrow-horizontal * {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transition: none !important;
}
.arrow-down:hover, .arrow-horizontal:hover, .arrow-down svg, .arrow-horizontal svg {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

@media (max-width: 600px) {
  /* HERO STATS: Make cycling number, plus, and label larger on mobile */
  #cycling-number,
  #cycling-plus,
  #cycling-label {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
  }
}

#audit-process .arrow-down svg {
  width: 40px !important;
  height: 80px !important;
  display: block;
}
#audit-process .arrow-horizontal svg {
  width: 80px !important;
  height: 32px !important;
  display: block;
}

@media (min-width: 901px) {
  .hero-buttons {
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-buttons .btn {
  text-align: center !important;
}

@media (max-width: 900px) {
  .logo img {
    width: 64px !important;
    height: 64px !important;
  }
}

/* Remove or override mobile-specific logo slider size reductions */
@media (max-width: 900px) {
  #trusted-slider-section .logo-img {
    max-height: 64px !important;
    max-width: 140px !important;
  }
  #trusted-slider-section .logo-item {
    min-width: unset !important;
    max-width: unset !important;
    height: auto !important;
    padding: 0 !important;
  }
}
@media (max-width: 600px) {
  #trusted-slider-section .logo-img {
    max-height: 64px !important;
    max-width: 140px !important;
  }
  #trusted-slider-section .logo-item {
    min-width: unset !important;
    max-width: unset !important;
    height: auto !important;
    padding: 0 !important;
  }
}