:root {
    --ref-dark: #0f172a;
    --ref-accent: #00B8C0;
    --ref-orange: #fc9817;
    --ref-light: #f8fafc;
    --ref-gray: #f1f5f9;
}

.references-slider-wrap {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.reference-item {
    outline: none;
    padding: 10px;
}

.reference-card {
    background: #ffffff;
    border-radius: 16px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0, 166, 178, 0.1); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #00A6B2, #007bff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 166, 178, 0.15);
}

.reference-card:hover::before {
    transform: scaleX(1);
}

.ref-logo-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ref-logo-wrap img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.reference-card:hover .ref-logo-wrap img {
    transform: scale(1.1); 
}

.reference-card.no-logo {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.ref-compact-text {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    line-height: 1.3;
    background: linear-gradient(135deg, #1e293b, #00A6B2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.references-slider .slick-track {
    display: flex !important;
    align-items: center;
}

.slick-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slick-nav__prev, .slick-nav__next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    color: var(--ref-dark);
    font-size: 24px;
}

.slick-nav__prev:hover, .slick-nav__next:hover {
    background: var(--ref-accent);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 166, 178, 0.3);
}

.references-slider:not(.slick-initialized) {
    display: flex;
    overflow-x: hidden;
    gap: 20px;
}

.references-slider:not(.slick-initialized) .reference-item {
    min-width: 200px;
    flex: 0 0 auto;
}


:root {
    --c-primary: #00B8C0;
    --c-secondary: #fc9817;
    --c-primary-dark: #008a90;
    --c-text-main: #1f2937;
    --c-text-muted: #6b7280;
    --c-bg-light: #ffffff;
    --c-bg-offwhite: #f9fafb;
    --c-border: #e5e7eb;
    --c-shadow: rgba(17, 24, 39, 0.06);
    --c-shadow-hover: rgba(0, 184, 192, 0.15);
}

.ref-page-wrapper {
    background-color: var(--c-bg-offwhite);
    color: var(--c-text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.ref-hero-clean {
    position: relative;
    padding: 160px 0 100px;
    background-color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid var(--c-border);
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    top: -100px; right: 5%;
    width: 600px; height: 600px;
    background: var(--c-primary);
}

.shape-2 {
    bottom: -150px; left: -5%;
    width: 500px; height: 500px;
    background: var(--c-secondary);
    opacity: 0.1;
}

.shape-3 {
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 300px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
    opacity: 0.05;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 184, 192, 0.1);
    color: var(--c-primary-dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--c-text-main);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.text-highlight {
    background: linear-gradient(135deg, var(--c-primary) 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(0, 184, 192, 0.2);
    z-index: -1;
    border-radius: 6px;
    transform: skewX(-15deg);
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-corporate-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--c-primary);
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 184, 192, 0.3);
    transition: all 0.3s ease;
}

.btn-corporate-primary:hover {
    background-color: var(--c-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 192, 0.4);
    color: #fff;
}

.btn-corporate-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background-color: #ffffff;
    border: 1px solid var(--c-border);
    color: var(--c-text-main);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px var(--c-shadow);
}

.btn-corporate-secondary:hover {
    background-color: var(--c-bg-offwhite);
    border-color: #d1d5db;
    color: var(--c-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--c-shadow);
}

.benefits-clean-section {
    padding: 100px 0;
    background-color: var(--c-bg-offwhite);
    position: relative;
    z-index: 2;
}

.section-badge-wrap {
    margin-bottom: 16px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid var(--c-border);
    color: var(--c-primary-dark);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px var(--c-shadow);
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--c-text-main);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subheading {
    font-size: 1.15rem;
    color: var(--c-text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.benefits-clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card-clean {
    background: #ffffff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px var(--c-shadow);
}

.benefit-card-clean:hover {
    transform: translateY(-5px);
    border-color: var(--c-primary);
    box-shadow: 0 15px 30px var(--c-shadow-hover);
}

.bc-icon {
    width: 60px; height: 60px;
    background: var(--c-bg-offwhite);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--c-primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.benefit-card-clean:hover .bc-icon {
    background: var(--c-primary);
    color: #ffffff;
    transform: scale(1.05) rotate(-5deg);
}

.bc-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text-main);
    margin-bottom: 12px;
}

.bc-content p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.highlight-clean {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    border-color: #ccfbf1;
}

.highlight-clean .bc-icon {
    background: #ccfbf1;
    color: #0f766e;
}

.highlight-clean:hover .bc-icon {
    background: #0f766e;
    color: #ffffff;
}

.bc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 20px;
    color: #0f766e;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.bc-link:hover {
    color: var(--c-primary-dark);
}

.bc-link i {
    transition: transform 0.2s ease;
}

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

.references-clean-wrap {
    padding: 100px 0 120px;
    background-color: #ffffff;
    border-top: 1px solid var(--c-border);
}

.ref-grid-clean {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ref-card-pure {
    background: #ffffff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
    box-shadow: 0 2px 4px var(--c-shadow);
}

.ref-card-pure:hover {
    transform: translateY(-5px);
    border-color: #d1d5db;
    box-shadow: 0 12px 24px var(--c-shadow);
    z-index: 2;
}

.ref-logo-pure {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ref-logo-pure img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ref-card-pure:hover .ref-logo-pure img {
    transform: scale(1.08);
}

.ref-text-pure {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--c-text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.ref-card-pure:hover .ref-text-pure {
    color: var(--c-primary);
}

.ref-more-pure {
    background: var(--c-bg-offwhite);
    border: 1px dashed #cbd5e1;
    cursor: pointer;
    box-shadow: none;
}

.ref-more-pure:hover {
    background: var(--c-primary);
    border-style: solid;
    border-color: var(--c-primary);
}

.ref-more-content-pure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--c-primary-dark);
    transition: color 0.3s ease;
}

.ref-more-pure:hover .ref-more-content-pure {
    color: #ffffff;
}

.ref-more-content-pure i {
    font-size: 28px;
}

.ref-more-content-pure span {
    font-size: 13px;
    font-weight: 600;
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpClean 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUpClean {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .benefits-clean-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-grid-clean { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn-corporate-primary, .btn-corporate-secondary { width: 100%; justify-content: center; }
    .ref-grid-clean { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .ref-hero-clean { padding: 120px 0 60px; }
    .hero-title { font-size: 2.25rem; }
    .section-heading { font-size: 2.2rem; margin-bottom: 20px; }
    .benefits-clean-grid { grid-template-columns: 1fr; gap: 16px; }
    .ref-grid-clean { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .benefit-card-clean { padding: 24px; }
}
