/* ===========================
   Reset & Base
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1F4396;
    --color-primary-dark: #173272;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-white: #ffffff;
    --color-bg: #f8fafc;
    --color-border: #e2e8f0;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --navbar-height: 56px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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


/* ===========================
   Navbar
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
}

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

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    gap: 20px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 28px;
    width: auto;
}

/* Nav Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    transition: color 0.2s ease;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--color-primary);
}

.dropdown-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: var(--color-white);
    border: 1px solid rgba(31, 67, 150, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(10, 18, 51, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--color-white);
    border-top: 1px solid rgba(31, 67, 150, 0.08);
    border-left: 1px solid rgba(31, 67, 150, 0.08);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu li a::before {
    content: '';
    width: 3px;
    height: 0;
    background: var(--color-primary);
    border-radius: 3px;
    transition: height 0.2s ease;
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    background: #f0f3fa;
    color: var(--color-primary);
}

.dropdown-menu li a:hover::before {
    height: 16px;
}

/* Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.btn-contact-us {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-contact-us:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 28, 63, 0.3);
}

/* Gradient Line */
.navbar-gradient-line {
    height: 2px;
    background: linear-gradient(
        90deg,
        #e74c3c 0%,
        #e67e22 15%,
        #f1c40f 30%,
        #2ecc71 45%,
        #1abc9c 55%,
        #3498db 70%,
        #9b59b6 85%,
        #e74c3c 100%
    );
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navbar active state for toggle */
.navbar-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ===========================
   CTA / Contact Section
   =========================== */
.cta-section {
    overflow: hidden;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Dark Top */
.cta-dark {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2d5e 50%, #0d1b3e 100%);
    padding: 50px 0 100px;
    position: relative;
}

.cta-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(31, 67, 150, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(31, 67, 150, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-dark-inner {
    position: relative;
    z-index: 1;
}

.cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    max-width: 550px;
}

/* Light Bottom */
.cta-light {
    background: linear-gradient(180deg, #eef1f8 0%, #f8f9fc 100%);
    padding: 0 0 50px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: start;
}

/* Left Info */
.cta-info {
    padding-top: 30px;
}

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

.cta-email {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
}

.cta-email a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-email a:hover {
    text-decoration: underline;
}

.cta-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* Checklist */
.cta-checklist {
    display: flex;
    gap: 40px;
    margin-bottom: 28px;
}

.cta-checklist ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
}

.cta-checklist li svg {
    flex-shrink: 0;
}

/* Steps */
.cta-steps {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.cta-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    padding: 14px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.3;
}

.cta-step strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.cta-step p {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* Form Card */
.cta-form-wrap {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.cta-form-card {
    background: var(--color-white);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cta-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 6px;
}

.cta-form-sub {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 24px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.consultation-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--color-text);
    background: #f8f9fc;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #b0b8c9;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(31, 67, 150, 0.08);
}

.consultation-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #f8f9fc;
    padding-right: 36px;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(31, 67, 150, 0.25);
}

.form-submit:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.35);
    transform: translateY(-1px);
}


/* ===========================
   Footer
   =========================== */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 13px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Footer Main */
.footer-main {
    padding: 40px 0 30px;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col-brand {
    padding-right: 20px;
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

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

.footer-list li {
    margin-bottom: 8px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    transition: color 0.2s ease;
}

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

/* Newsletter */
.newsletter-form {
    margin-top: 4px;
}

.newsletter-row {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    font-family: var(--font-family);
    color: var(--color-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px 0 0 5px;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family);
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-left: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.newsletter-btn:hover {
    background: var(--color-primary);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    line-height: 1.4;
}

.newsletter-consent a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

/* Schedule Button */
.btn-schedule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    transition: all 0.2s ease;
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
}

.footer-bottom .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-left a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

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

.footer-sep {
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-center {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-center a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

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

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

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
    display: flex;
}

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


/* ===========================
   Main Content
   =========================== */
main {
    min-height: calc(100vh - var(--navbar-height) - 90px);
}


/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8faff 0%, #eef2fb 40%, #f0f4ff 100%);
    padding: 25px 0 25px;
    overflow: hidden;
}

/* Animated Background Orbs */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(31, 67, 150, 0.12);
    top: -100px;
    left: -80px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(240, 165, 0, 0.1);
    top: 50%;
    right: -50px;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(31, 67, 150, 0.08);
    bottom: -80px;
    left: 40%;
    animation-delay: -5s;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(31, 67, 150, 0.08);
    border: 1px solid rgba(31, 67, 150, 0.12);
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(3rem, 4.5rem, 5vw);
    font-weight: 600;
    color: #0a1233;
    line-height: 1em;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.3rem, 2.55vw);
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0px;
    color: #475569;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(31, 67, 150, 0.3);
}

.hero-btn:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.4);
    transform: translateY(-2px);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid rgba(31, 67, 150, 0.2);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.hero-btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(31, 67, 150, 0.04);
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust {
    padding-top: 4px;
}

.hero-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.trust-item svg {
    flex-shrink: 0;
}

/* Authorized Reseller */
.hero-reseller {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 5px 10px;
    background: var(--color-white);
    border: 1px solid rgba(31, 67, 150, 0.1);
    border-radius: 10px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(31, 67, 150, 0.06);
    position: relative;
    overflow: hidden;
}

.hero-reseller::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #4285f4 30%, #ea4335 50%, #fbbc05 70%, #34a853 100%);
}

.reseller-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reseller-shield {
    flex-shrink: 0;
}

.reseller-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--color-primary);
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.2;
}

.reseller-divider {
    width: 1px;
    height: 24px;
    background: rgba(31, 67, 150, 0.15);
    flex-shrink: 0;
}

.reseller-logos {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reseller-logo-item {
    display: flex;
    align-items: center;
    padding: 2px 5px;
    border-radius: 5px;
}

.reseller-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.reseller-logo-zoho {
    height: 28px;
}

/* Hero Form Card */
.hero-form-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 30px 28px;
    box-shadow: 0 20px 60px rgba(10, 18, 51, 0.1), 0 1px 2px rgba(0, 0, 0, 0.04);
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 60%, #f0a500 100%) 1;
    position: relative;
}

.hero-form-header {
    margin-bottom: 22px;
}

.hero-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a1233;
    margin-bottom: 6px;
}

.hero-form-sub {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-form .form-group {
    margin-bottom: 14px;
}

.hero-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0a1233;
    margin-bottom: 5px;
}

.required {
    color: #e53e3e;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--color-text);
    background: #f8f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #94a3b8;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(31, 67, 150, 0.08);
}

.hero-form select {
    appearance: none;
    background-color: #f8f9fc;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.hero-form textarea {
    resize: vertical;
    min-height: 70px;
}

.hero-form-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family);
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a5cc7 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(31, 67, 150, 0.3);
}

.hero-form-submit:hover {
    box-shadow: 0 6px 24px rgba(31, 67, 150, 0.45);
    transform: translateY(-2px);
}

.hero-form-note {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 12px;
}


/* ===========================
   Stats Section
   =========================== */
.stats {
    background: var(--color-primary);
    padding: 24px 0;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-number {
    font-family: "Inter Tight", sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-unit {
    font-size: 20px;
    font-weight: 500;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}


/* ===========================
   Expertise Section
   =========================== */
.expertise {
    padding: 30px 0 30px;
    background: var(--color-white);
}

.expertise-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.expertise-card {
    background: #1e1e2e;
    border-radius: 20px;
    padding: 36px 44px;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.expertise-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.expertise-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2rem, 3rem, 4vw);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

/* Diamond Dot Pattern */
.expertise-pattern {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.35;
}

.pattern-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pattern-dot {
    width: 8px;
    height: 8px;
    background: rgba(200, 210, 240, 0.8);
    transform: rotate(45deg);
    flex-shrink: 0;
}


/* ===========================
   Case Studies Section
   =========================== */
.case-studies {
    padding: 28px 0;
    background: #f5f7fb;
}

.case-studies-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.cs-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2rem, 2.6rem, 4vw);
    font-weight: 700;
    color: #0a1233;
    line-height: 1.2;
    margin-bottom: 8px;
}

.cs-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 24px;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    margin-bottom: 24px;
}

/* Card */
.cs-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.cs-card:hover {
    box-shadow: 0 20px 50px rgba(31, 67, 150, 0.13), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-6px);
}

/* Image area */
.cs-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #edf0f6;
}

/* Gradient overlay at bottom of image for smooth transition */
.cs-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(255,255,255,0.6) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.cs-card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-card:hover .cs-card-cover {
    transform: scale(1.06);
}

/* Card body */
.cs-card-body {
    padding: 16px 20px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cs-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cs-meta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.cs-meta-sep {
    font-size: 11px;
    color: #c8cdd8;
}

.cs-meta-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #3d4a6b;
    text-transform: uppercase;
}

.cs-meta-read {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.3px;
}

.cs-card-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a1233;
    margin-bottom: 6px;
    line-height: 1.35;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs-card:hover .cs-card-title {
    color: var(--color-primary);
}

.cs-card-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.55;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cs-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.cs-card-author-name::after {
    content: "·";
    margin-left: 6px;
    color: #c8cdd8;
    font-weight: 700;
}

.cs-card-author .cs-read-more {
    margin-left: auto;
    padding: 0;
}

.cs-card-author-name {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 11.5px;
    color: var(--color-text);
}

.cs-card-author-name svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.cs-card-author-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--color-text-light);
}

.cs-card-author-date svg {
    color: var(--color-primary);
    opacity: 0.7;
    flex-shrink: 0;
}

/* View Case Study button */
.cs-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    padding: 4px 0 0;
    transition: all 0.3s ease;
}

.cs-read-more svg {
    transition: transform 0.3s ease;
}

.cs-card:hover .cs-read-more {
    color: var(--color-primary-dark);
}

.cs-card:hover .cs-read-more svg {
    transform: translateX(5px);
}

/* CTA button */
.cs-cta {
    text-align: center;
}

.cs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid rgba(31, 67, 150, 0.18);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cs-cta-btn:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.25);
    transform: translateY(-2px);
}


/* Case Studies Compact (for service pages) */
.cs-compact {
    background: #ffffff;
}

.cs-compact .cs-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ===========================
   Clients Section
   =========================== */
.clients {
    padding: 36px 0 30px;
    background: var(--color-white);
    overflow: hidden;
}

.clients-header {
    max-width: 1280px;
    margin: 0 auto 24px;
    padding: 0 40px;
    text-align: center;
}

.clients-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.6rem, 2.2rem, 3.5vw);
    font-weight: 700;
    color: #0a1233;
    line-height: 1.2;
    margin-bottom: 6px;
}

.clients-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.clients-scroll-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.clients-scroll-wrap::before,
.clients-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.clients-scroll-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white) 0%, transparent 100%);
}

.clients-scroll-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
}

.clients-row {
    display: flex;
    gap: 14px;
    width: max-content;
}

.clients-row:nth-child(1) {
    animation: scrollLeft 120s linear infinite;
}

.clients-row:nth-child(2) {
    animation: scrollRight 120s linear infinite;
}

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

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

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 120px;
    padding: 8px;
    border-radius: 10px;
    background: var(--color-white);
    border: 1px solid #e8ecf3;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: #cdd4e2;
    box-shadow: 0 4px 16px rgba(31, 67, 150, 0.08);
    transform: translateY(-2px);
}

.client-logo img {
    max-width: 140px;
    max-height: 96px;
    object-fit: contain;
}

.clients-cta {
    text-align: center;
    margin-top: 24px;
}

.clients-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid rgba(31, 67, 150, 0.18);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.clients-cta-btn:hover {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.25);
    transform: translateY(-2px);
}


/* ===========================
   Delivery Models Section
   =========================== */
.delivery-models {
    padding: 28px 0 20px;
    background: var(--color-white);
}

.dm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.dm-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 18px;
}

.dm-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.5rem, 2rem, 3vw);
    font-weight: 700;
    color: #0a1233;
    line-height: 1.3;
    max-width: 640px;
    margin-bottom: 24px;
}

.dm-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-bottom: 14px;
}

.dm-card {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    border-left: 1px solid var(--color-border);
    position: relative;
    transition: background 0.3s ease;
}

.dm-card:first-child {
    border-left: none;
    padding-left: 0;
}

.dm-card:last-child {
    padding-right: 0;
}

.dm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.dm-card:first-child::after {
    left: 0;
}

.dm-card:last-child::after {
    right: 0;
}

.dm-card:hover::after {
    transform: scaleX(1);
}

.dm-icon {
    margin-bottom: 24px;
}

.dm-icon svg {
    width: 56px;
    height: 56px;
}

.dm-card-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a1233;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.dm-card:hover .dm-card-title {
    color: var(--color-primary);
}

.dm-card-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.dm-divider {
    height: 1px;
    background: var(--color-border);
    margin-bottom: 14px;
}

.dm-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

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


/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: 30px 0 30px;
    background: #dce4f2;
}

.svc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.svc-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(31, 67, 150, 0.15);
    border-radius: 4px;
    margin-bottom: 14px;
}

.svc-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.5rem, 2rem, 3vw);
    font-weight: 700;
    color: #0a1233;
    line-height: 1.3;
    max-width: 700px;
    margin-bottom: 24px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.svc-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 12px;
    padding: 28px 28px 24px;
    border-left: 3px solid var(--color-primary);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
}

.svc-card:hover {
    box-shadow: 0 12px 36px rgba(31, 67, 150, 0.14);
    transform: translateY(-4px);
    border-left-color: var(--color-primary-dark);
}

.svc-icon {
    margin-bottom: 18px;
}

.svc-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon svg {
    transform: scale(1.1);
}

.svc-card-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a1233;
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.svc-card:hover .svc-card-title {
    color: var(--color-primary);
}

.svc-card-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.svc-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    border-top: 1px solid var(--color-border);
    padding-top: 14px;
    margin-top: auto;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.25s ease;
}

.svc-learn::after {
    content: '\2192';
    font-size: 14px;
    transition: transform 0.25s ease;
}

.svc-card:hover .svc-learn {
    color: var(--color-primary-dark);
}

.svc-card:hover .svc-learn::after {
    transform: translateX(4px);
}

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

.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(31, 67, 150, 0.3);
}

.svc-cta-btn:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.4);
    transform: translateY(-2px);
}


/* ===========================
   Industries Section
   =========================== */
.industries-section {
    padding: 30px 0 28px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(31, 67, 150, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.ind-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

.ind-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: 18px;
}

.ind-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.6rem, 2.2rem, 3vw);
    font-weight: 700;
    color: #0a1233;
    line-height: 1.35;
    max-width: 780px;
    margin: 0 auto 28px;
}

.ind-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.ind-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.ind-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    background: var(--color-white);
    border: 1px solid #e8ecf3;
    border-radius: 60px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.ind-tag:hover {
    border-color: rgba(31, 67, 150, 0.2);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.1);
    transform: translateY(-3px);
}

.ind-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: #f0f3fa;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.ind-tag:hover .ind-tag-icon {
    background: #e2e8f4;
}

.ind-tag-icon svg {
    width: 28px;
    height: 28px;
}

.ind-tag-text {
    font-size: 15px;
    font-weight: 600;
    color: #0a1233;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.ind-tag:hover .ind-tag-text {
    color: var(--color-primary);
}

.ind-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

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


/* ===========================
   Thought Leadership Section
   =========================== */
.thought-section {
    padding: 30px 0 30px;
    background: linear-gradient(180deg, #dce4f2 0%, #e8edf8 100%);
}

.tl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.tl-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(31, 67, 150, 0.15);
    border-radius: 4px;
    margin-bottom: 14px;
}

.tl-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2rem, 2.8rem, 4vw);
    font-weight: 700;
    color: #0a1233;
    line-height: 1.2;
    margin-bottom: 24px;
}

.tl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tl-grid .tl-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 12px;
    padding: 28px 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tl-grid .tl-card:hover {
    box-shadow: 0 12px 36px rgba(31, 67, 150, 0.12);
    transform: translateY(-4px);
}

.tl-icon {
    margin-bottom: 18px;
}

.tl-icon svg {
    width: 48px;
    height: 48px;
}

.tl-card-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a1233;
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.tl-grid .tl-card:hover .tl-card-title {
    color: var(--color-primary);
}

.tl-card-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.tl-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    border-top: 1px solid var(--color-border);
    padding-top: 14px;
    margin-top: auto;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.25s ease;
}

.tl-learn::after {
    content: '\2192';
    font-size: 14px;
    transition: transform 0.25s ease;
}

.tl-grid .tl-card:hover .tl-learn {
    color: var(--color-primary-dark);
}

.tl-grid .tl-card:hover .tl-learn::after {
    transform: translateX(4px);
}

.tl-cta {
    text-align: center;
    margin-top: 24px;
}

.tl-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(31, 67, 150, 0.3);
}

.tl-cta-btn:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.4);
    transform: translateY(-2px);
}


/* ===========================
   Customer Success Framework
   =========================== */
.csf-section {
    padding: 50px 20px;
    background: linear-gradient(180deg, #c8d2e8 0%, #d4dcee 40%, #c8d2e8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.csf-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.csf-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.csf-dot-1  { width: 40px; height: 40px; top: 12%; left: 8%; }
.csf-dot-2  { width: 24px; height: 24px; top: 18%; left: 30%; }
.csf-dot-3  { width: 50px; height: 50px; top: 8%; right: 22%; }
.csf-dot-4  { width: 18px; height: 18px; top: 14%; right: 12%; }
.csf-dot-5  { width: 32px; height: 32px; top: 10%; right: 8%; }
.csf-dot-6  { width: 60px; height: 60px; bottom: 14%; left: 18%; }
.csf-dot-7  { width: 20px; height: 20px; bottom: 20%; left: 32%; }
.csf-dot-8  { width: 44px; height: 44px; bottom: 10%; right: 25%; }
.csf-dot-9  { width: 28px; height: 28px; bottom: 18%; right: 14%; }
.csf-dot-10 { width: 16px; height: 16px; bottom: 24%; right: 8%; }

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

.csf-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2rem, 3.2rem, 5vw);
    font-weight: 800;
    color: #0a1233;
    line-height: 1.15;
    margin-bottom: 20px;
}

.csf-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 32px;
}

.csf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(31, 67, 150, 0.3);
}

.csf-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 18, 51, 0.3);
}


/* ===========================
   Responsive
   =========================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 440px;
        gap: 40px;
    }

    .navbar-container {
        padding: 0 20px;
    }

    .nav-link {
        padding: 10px 10px;
        font-size: 13.5px;
    }

}

@media (max-width: 992px) {
    .dm-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .dm-card {
        border-left: none;
        padding-left: 0;
        padding-right: 0;
    }

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

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

    .hero {
        padding: 30px 0 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--color-white);
        padding: 20px 30px;
        gap: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navbar-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .has-dropdown.open .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .navbar-right {
        display: none;
    }

}

@media (max-width: 768px) {
    .dm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tl-grid {
        grid-template-columns: 1fr;
    }

    .ind-tag-text {
        white-space: normal;
    }

    .cs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .expertise-card {
        padding: 36px 30px;
        min-height: auto;
    }

    .expertise-pattern {
        display: none;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-form-wrap {
        margin-top: 0;
    }

    .cta-checklist {
        flex-direction: column;
        gap: 8px;
    }

    .cta-steps {
        flex-direction: column;
        gap: 12px;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-bottom-left,
    .footer-bottom-center {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .dm-grid {
        grid-template-columns: 1fr;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 28px;
    }
}


/* ===========================
   Services Page
   =========================== */

/* Hero */
.svc-hero {
    position: relative;
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2d5e 50%, #0d1b3e 100%);
    padding: 20px 0 18px;
    text-align: center;
    overflow: hidden;
}

.svc-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.svc-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.svc-hero-orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(31, 67, 150, 0.4);
    top: -100px;
    left: -50px;
}

.svc-hero-orb-2 {
    width: 280px;
    height: 280px;
    background: rgba(240, 165, 0, 0.15);
    bottom: -80px;
    right: -40px;
}

.svc-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.svc-hero-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2.2rem, 3.2rem, 5vw);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
    white-space: nowrap;
}

.svc-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 20px;
    white-space: nowrap;
}

/* Hero Breadcrumb */
.svc-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.svc-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.svc-hero-breadcrumb a:hover {
    color: var(--color-white);
}

.svc-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

.svc-hero-breadcrumb svg {
    opacity: 0.4;
}

/* Intro */
.svc-intro {
    padding: 32px 0 30px;
    background: #ffffff;
}

.svc-intro-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.svc-intro-content {
    padding-right: 30px;
}

.svc-intro-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.6rem, 2.2rem, 3vw);
    font-weight: 700;
    color: #0a1233;
    line-height: 1.3;
    margin-bottom: 14px;
}

.svc-intro-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 6px;
}

.svc-intro-muted {
    color: #94a3b8;
    font-style: italic;
}

/* Highlights */
.svc-intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: center;
}

.svc-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(31, 67, 150, 0.06);
    transition: all 0.3s ease;
}

.svc-highlight:hover {
    border-color: #1F4396;
    box-shadow: 0 4px 16px rgba(31, 67, 150, 0.12);
    transform: translateY(-2px);
}

.svc-highlight svg {
    flex-shrink: 0;
}

.svc-highlight span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

/* CTA */
.svc-page-cta {
    padding: 30px 20px;
    background: linear-gradient(180deg, #c8d2e8 0%, #d4dcee 40%, #c8d2e8 100%);
    text-align: center;
}

.svc-page-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.svc-page-cta-title {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(1.8rem, 2.6rem, 4vw);
    font-weight: 800;
    color: #0a1233;
    margin-bottom: 8px;
    white-space: nowrap;
}

.svc-page-cta-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.svc-page-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(31, 67, 150, 0.3);
}

.svc-page-cta-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 67, 150, 0.4);
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .svc-intro-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .svc-intro-content {
        padding-right: 0;
    }

    .svc-intro-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {
    .svc-hero {
        padding: 30px 0 24px;
    }

    .svc-hero-title,
    .svc-hero-subtitle {
        white-space: normal;
    }

    .svc-intro-highlights {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 480px) {
    .svc-intro-highlights {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   INDUSTRIES PAGE
   ======================================== */

.ind-page-section {
    padding: 50px 0 48px;
    background: #f0f4fa;
}

.ind-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.ind-page-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ind-page-card:hover {
    border-color: #1F4396;
    box-shadow: 0 8px 24px rgba(31, 67, 150, 0.1);
    transform: translateY(-3px);
}

.ind-page-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FA;
    border-radius: 14px;
    margin-bottom: 20px;
}

.ind-page-card-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.ind-page-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ind-page-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f4fa;
    padding-top: 14px;
}

.ind-page-card-list li {
    font-size: 13px;
    color: #475569;
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.ind-page-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #1F4396;
    border-radius: 50%;
}

a.ind-page-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.ind-page-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap 0.25s ease;
}

.ind-page-card:hover .ind-page-card-cta {
    gap: 10px;
}

@media (max-width: 992px) {
    .ind-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ind-page-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   AI AS A SERVICE PAGE
   ======================================== */

/* Capabilities Section */
.aiaas-capabilities {
    padding: 50px 0 48px;
    background: #f0f4fa;
}

.aiaas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.aiaas-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.aiaas-card:hover {
    border-color: #1F4396;
    box-shadow: 0 8px 24px rgba(31, 67, 150, 0.1);
    transform: translateY(-3px);
}

.aiaas-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FA;
    border-radius: 14px;
    margin-bottom: 20px;
}

.aiaas-card-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.aiaas-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.aiaas-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f4fa;
    padding-top: 14px;
}

.aiaas-card-list li {
    font-size: 13px;
    color: #475569;
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.aiaas-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #1F4396;
    border-radius: 50%;
}

/* Process Section */
.aiaas-process {
    padding: 50px 0 48px;
    background: #ffffff;
}

.aiaas-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 36px;
}

.aiaas-step {
    padding: 28px 24px;
    position: relative;
    border-left: 2px solid #e2e8f0;
}

.aiaas-step:first-child {
    border-left: 2px solid #1F4396;
}

.aiaas-step:hover {
    border-left-color: #1F4396;
}

.aiaas-step-num {
    font-family: "Inter Tight", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1F4396;
    opacity: 0.2;
    margin-bottom: 14px;
    line-height: 1;
}

.aiaas-step:hover .aiaas-step-num {
    opacity: 0.5;
}

.aiaas-step-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.aiaas-step-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.7;
}

/* AIaaS Responsive */
@media (max-width: 992px) {
    .aiaas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .aiaas-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .aiaas-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Company Page Styles
   =========================== */

/* Mission & Vision */
.co-mission-section {
    padding: 32px 0 30px;
    background: #f8fafc;
}

.co-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.co-mission-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 32px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.co-mission-card:hover {
    border-color: #1F4396;
    box-shadow: 0 8px 24px rgba(31, 67, 150, 0.08);
}

.co-mission-icon {
    margin-bottom: 20px;
}

.co-mission-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.co-mission-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.75;
}

/* Why We Are Unique */
#why-us {
    padding: 32px 0 30px;
}

#why-us .svc-title {
    max-width: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    #why-us .svc-title {
        white-space: normal;
    }
}

.co-unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.co-unique-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.co-unique-card:hover {
    border-color: #1F4396;
    box-shadow: 0 8px 24px rgba(31, 67, 150, 0.08);
    transform: translateY(-2px);
}

.co-unique-icon {
    width: 56px;
    height: 56px;
    background: #EEF2FA;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.co-unique-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.co-unique-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
}

/* Delivery Models */
.co-delivery-section {
    padding: 32px 0 30px;
    background: #ffffff;
}

.co-delivery-heading {
    max-width: none;
}

.co-delivery-intro {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    max-width: none;
    margin-top: 12px;
}

.co-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.co-delivery-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.co-delivery-card:hover {
    border-color: #1F4396;
    box-shadow: 0 8px 24px rgba(31, 67, 150, 0.08);
    transform: translateY(-2px);
}

.co-delivery-num {
    font-family: "Inter Tight", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1F4396;
    opacity: 0.15;
    margin-bottom: 12px;
    line-height: 1;
}

.co-delivery-card:hover .co-delivery-num {
    opacity: 0.4;
}

.co-delivery-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.co-delivery-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
}

/* Customer Success Framework */
.co-framework-section {
    padding: 32px 0 30px;
    background: #f0f4fa;
}

.co-framework-section .svc-title {
    max-width: none;
}

.co-framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.co-framework-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.co-framework-card:hover {
    border-color: #1F4396;
    box-shadow: 0 8px 24px rgba(31, 67, 150, 0.08);
    transform: translateY(-2px);
}

.co-framework-icon {
    width: 64px;
    height: 64px;
    background: #EEF2FA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.co-framework-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.co-framework-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.7;
}

/* Our Clients */
.co-clients-section {
    padding: 32px 0 30px;
    background: #ffffff;
}

.co-clients-section .svc-title {
    max-width: none;
}


/* Clients Carousel */
.co-clients-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.co-clients-viewport {
    flex: 1;
    overflow: hidden;
}

.co-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}

.co-clients-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: #1F4396;
    transition: all 0.2s;
}

.co-clients-nav:hover {
    background: #1F4396;
    border-color: #1F4396;
    color: #ffffff;
}

.co-clients-nav:hover svg {
    stroke: #ffffff;
}

.co-clients-nav-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.co-clients-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.co-clients-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.co-clients-dot.active {
    background: #1F4396;
    transform: scale(1.25);
}

.co-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 8px;
    border-radius: 10px;
    background: var(--color-white);
    border: 1px solid #e8ecf3;
    transition: all 0.3s ease;
}

.co-client-logo:hover {
    border-color: #cdd4e2;
    box-shadow: 0 4px 16px rgba(31, 67, 150, 0.08);
    transform: translateY(-2px);
}

.co-client-logo img {
    max-width: 140px;
    max-height: 96px;
    object-fit: contain;
}

/* Platform Partnerships */
.co-partners-section {
    padding: 32px 0 30px;
    background: #ffffff;
}

.co-partners-title {
    font-size: 22px !important;
}

.co-partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.co-partner-logo {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.co-partner-logo:hover {
    border-color: #1F4396;
    box-shadow: 0 4px 12px rgba(31, 67, 150, 0.06);
}

.co-partner-logo img {
    max-height: 36px;
    max-width: 120px;
    object-fit: contain;
}

/* Company Page Responsive */
@media (max-width: 992px) {
    .co-unique-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .co-clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .co-mission-grid {
        grid-template-columns: 1fr;
    }

    .co-framework-grid {
        grid-template-columns: 1fr;
    }

    .co-clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .co-clients-nav {
        width: 36px;
        height: 36px;
    }

    .co-partners-grid {
        gap: 20px;
    }

    .co-partner-logo {
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .co-unique-grid {
        grid-template-columns: 1fr;
    }

    .co-delivery-grid {
        grid-template-columns: 1fr;
    }

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

    .co-clients-nav {
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   THOUGHT LEADERSHIP PAGE
   ======================================== */

/* Filter Section */
.tl-filter-section {
    padding: 24px 0 0;
    background: #ffffff;
}

.tl-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tl-filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-family: "Inter Tight", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}

.tl-filter-btn:hover {
    border-color: #1F4396;
    color: #1F4396;
}

.tl-filter-btn.active {
    background: #1F4396;
    border-color: #1F4396;
    color: #ffffff;
}

/* Articles Grid */
.tl-articles-section {
    padding: 24px 0 32px;
    background: #ffffff;
}

.tl-articles-section .cs-card {
    cursor: pointer;
}

.tl-articles-section .cs-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Thought Leadership Responsive */
@media (max-width: 992px) {
    .tl-articles-section .cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tl-articles-section .cs-grid {
        grid-template-columns: 1fr;
    }

    .tl-filters {
        gap: 8px;
    }

    .tl-filter-btn {
        padding: 6px 14px;
        font-size: 12.5px;
    }
}

/* ===========================
   Blog Detail Page
   =========================== */

/* Hero overrides */
/* Progress Bar */
.blog-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #1F4396, #3b82f6, #1F4396);
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    z-index: 9999;
    transition: width 0.15s ease-out, opacity 0.3s;
    opacity: 0;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(31, 67, 150, 0.4);
}
@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Blog Hero */
.blog-hero { padding: 24px 0 18px; }
.blog-hero-container { max-width: 900px; }
.blog-hero-title {
    white-space: normal;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

/* Description */
.blog-description {
    margin-bottom: 20px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    border-left: 4px solid #1F4396;
    border-radius: 0 12px 12px 0;
}
.blog-description p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #334155;
    font-weight: 400;
}

/* Hero Meta */
.blog-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}
.blog-hero-category {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(31, 67, 150, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.blog-hero-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    line-height: 1;
}
.blog-hero-date {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
}
.blog-hero-readtime {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
}
.blog-hero-readtime svg {
    opacity: 0.7;
}

/* Article */
.blog-article {
    padding: 28px 0 32px;
    background: #ffffff;
}
.blog-article-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Featured Image */
.blog-featured-img {
    margin-bottom: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 18, 51, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-featured-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(10, 18, 51, 0.16);
}
.blog-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Author Bar */
.blog-author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin: 16px 0 24px;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.blog-author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.blog-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F4396, #2a5cc7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
}
.blog-author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.blog-author-name {
    font-size: 15px;
    font-weight: 600;
    color: #0a1233;
}
.blog-author-by {
    font-weight: 400;
    color: #64748b;
}
.blog-author-designation {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}
.blog-author-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #64748b;
    font-weight: 500;
    flex-shrink: 0;
}
.blog-author-date svg {
    color: #94a3b8;
}
.blog-author-meta-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.blog-author-readtime {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 100px;
}
.blog-author-readtime svg {
    color: #94a3b8;
}

/* Content Prose */
.blog-content {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #334155;
}
.blog-content > p:first-child::first-letter {
    float: left;
    font-size: 3.4em;
    line-height: 0.85;
    font-weight: 800;
    color: #1F4396;
    margin-right: 8px;
    margin-top: 4px;
}
.blog-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0a1233;
    margin: 48px 0 16px;
    line-height: 1.3;
}
.blog-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a1233;
    margin: 44px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    line-height: 1.3;
}
.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1233;
    margin: 30px 0 12px;
    line-height: 1.35;
}
.blog-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 0 10px;
}
.blog-content p {
    margin: 0 0 18px;
}
.blog-content a {
    color: #1F4396;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-content a:hover {
    color: #0d2866;
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.blog-content ul, .blog-content ol {
    margin: 0 0 18px;
    padding-left: 24px;
}
.blog-content li {
    margin-bottom: 8px;
}
.blog-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid #1F4396;
    background: #f1f5f9;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #475569;
}
.blog-content blockquote p:last-child {
    margin-bottom: 0;
}
.blog-content pre {
    margin: 24px 0;
    padding: 20px 24px;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    overflow-x: auto;
    font-size: 13.5px;
    line-height: 1.6;
}
.blog-content code {
    font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
    font-size: 0.9em;
}
.blog-content p code {
    padding: 2px 8px;
    background: #f1f5f9;
    border-radius: 6px;
    color: #1F4396;
}
.blog-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.blog-content th {
    background: #f8fafc;
    padding: 12px 16px;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
    color: #0a1233;
    font-size: 13.5px;
}
.blog-content td {
    padding: 11px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}
.blog-content hr {
    border: none;
    height: 1px;
    background: #e2e8f0;
    margin: 36px 0;
}

/* Author Box (end of article) */
.blog-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    margin: 28px 0 24px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}
.blog-author-avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 22px;
    flex-shrink: 0;
}
.blog-author-box-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.blog-author-box-label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    font-weight: 600;
}
.blog-author-box-name {
    font-size: 17px;
    font-weight: 700;
    color: #0a1233;
}
.blog-author-box-designation {
    font-size: 13.5px;
    color: #1F4396;
    font-weight: 500;
}
.blog-author-box-date {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

/* Article Footer */
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid #e2e8f0;
}
.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.blog-tag {
    padding: 6px 16px;
    border-radius: 100px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12.5px;
    font-weight: 600;
}
.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-share-label {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-right: 2px;
}
.blog-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.25s ease;
}
.blog-share-link:hover {
    background: #1F4396;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 67, 150, 0.3);
}

/* Related Blogs */
.blog-related {
    padding: 40px 0 36px;
    background: #f8fafc;
}
.blog-related-header {
    text-align: center;
    margin-bottom: 32px;
}
.blog-related-header .svc-label {
    display: inline-block;
}
.blog-related-header .svc-title {
    margin: 0 auto;
}
.blog-related .cs-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Blog Detail Responsive */
@media (max-width: 992px) {
    .blog-related .cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-article-container {
        padding: 0 24px;
    }
    .blog-hero-title {
        font-size: clamp(1.5rem, 2rem, 4vw);
    }
    .blog-content {
        font-size: 15px;
    }
    .blog-content > p:first-child::first-letter {
        font-size: 2.8em;
    }
    .blog-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .blog-author-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .blog-author-meta-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .blog-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .blog-description {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .blog-related .cs-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .blog-hero-dot {
        display: none;
    }
}

/* ========== Case Study Detail - Premium Design ========== */

/* Entrance Animation */
@keyframes csdFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes csdSlideIn {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Hero */
.csd-hero {
    padding: 24px 0 20px;
    position: relative;
    overflow: hidden;
}
.csd-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.csd-hero-container {
    max-width: 920px;
    position: relative;
    z-index: 2;
}
.csd-hero-title {
    white-space: normal;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    line-height: 1.18;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    animation: csdFadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.csd-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    animation: csdFadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.csd-hero-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(31, 67, 150, 0.5), rgba(42, 92, 199, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.csd-hero-category {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.csd-hero-industry {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
/* Main Layout */
.csd-main {
    padding: 28px 0 36px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 120px);
}
.csd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.csd-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
}
.csd-content {
    animation: csdFadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* Intro */
.csd-intro {
    margin-bottom: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    border-left: 4px solid #1F4396;
    border-radius: 0 12px 12px 0;
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
}

/* Featured Image */
.csd-featured-img {
    margin-bottom: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 18, 51, 0.08), 0 1px 3px rgba(10, 18, 51, 0.06);
    position: relative;
}
.csd-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.csd-featured-img:hover img {
    transform: scale(1.02);
}

/* Meta Bar (below image) */
.csd-meta-bar {
    display: flex;
    margin-bottom: 24px;
    padding: 12px 0;
    border-top: 1px solid #e9edf4;
    border-bottom: 1px solid #e9edf4;
}
.csd-meta-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    border-right: 1px solid #e9edf4;
}
.csd-meta-item:first-child {
    padding-left: 0;
}
.csd-meta-item:last-child {
    border-right: none;
    padding-right: 0;
}
.csd-meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1F4396;
}
.csd-meta-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.csd-meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
}
.csd-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #0a1233;
}

/* Content Sections */
.csd-section {
    margin-bottom: 22px;
}
.csd-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9edf4;
}
.csd-section-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.csd-icon-challenge { background: #fef3c7; color: #b45309; }
.csd-icon-solution  { background: #dbeafe; color: #1d4ed8; }
.csd-icon-results   { background: #d1fae5; color: #047857; }
.csd-section-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a1233;
    margin: 0;
}
.csd-section-body {
    font-size: 15px;
    line-height: 1.75;
    color: #334155;
}
.csd-section-body p {
    margin: 0 0 12px;
}
.csd-section-body p:last-child {
    margin-bottom: 0;
}
.csd-section-body ul,
.csd-section-body ol {
    padding-left: 20px;
    margin: 8px 0;
}
.csd-section-body li {
    margin-bottom: 6px;
    line-height: 1.7;
}
.csd-section-body strong {
    color: #0a1233;
}
.csd-section-body h3,
.csd-section-body h4 {
    font-family: "Inter Tight", sans-serif;
    color: #0a1233;
    margin: 16px 0 8px;
}

/* Important Links */
.csd-icon-links {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
}
.csd-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.csd-link-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f8fafc;
    border: 1px solid #e9edf4;
    border-radius: 8px;
    color: #1F4396;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.csd-link-item:hover {
    background: #eef2fa;
    border-color: #1F4396;
    transform: translateX(4px);
}
.csd-link-item svg {
    flex-shrink: 0;
    color: #94a3b8;
    transition: color 0.2s ease;
}
.csd-link-item:hover svg {
    color: #1F4396;
}

/* Gallery */
.csd-icon-gallery {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
}
.csd-gallery {
    display: grid;
    gap: 12px;
}
.csd-gallery-web {
    grid-template-columns: repeat(2, 1fr);
}
.csd-gallery-app {
    grid-template-columns: repeat(4, 1fr);
}
.csd-gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9edf4;
    background: #f8fafc;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.csd-gallery-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(10, 18, 51, 0.1);
    transform: translateY(-2px);
}
.csd-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
.csd-gallery-web-item {
    aspect-ratio: 16 / 10;
}
.csd-gallery-web-item img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.csd-gallery-app-item {
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    border: 2px solid #e2e8f0;
}
.csd-gallery-app-item img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Share */
.csd-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    margin-top: 8px;
    border-top: 1px solid #e9edf4;
}
.csd-share-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
}
.csd-share-links {
    display: flex;
    gap: 10px;
}
.csd-share-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.csd-share-link:hover {
    background: #1F4396;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(31, 67, 150, 0.3);
}

/* Sidebar */
.csd-sidebar {
    animation: csdFadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.csd-sidebar-sticky {
    position: sticky;
    top: 72px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Info Card */
.csd-info-card {
    background: #ffffff;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(10, 18, 51, 0.05);
}
.csd-info-group {
    margin-bottom: 18px;
}
.csd-info-group:last-child {
    margin-bottom: 0;
}
.csd-info-group-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Inter Tight", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
    margin: 0 0 10px;
}
.csd-info-group-title svg {
    color: #94a3b8;
}
.csd-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.csd-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #1F4396;
    font-size: 12.5px;
    font-weight: 600;
    transition: background 0.2s ease;
}
.csd-tag:hover {
    background: #e2e8f0;
}
.csd-tag-tech {
    color: #047857;
    background: #ecfdf5;
}
.csd-tag-tech:hover {
    background: #d1fae5;
}

/* CTA Card */
.csd-cta-card {
    background: linear-gradient(135deg, #0a1233 0%, #1a3a80 50%, #1F4396 100%);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.csd-cta-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    filter: blur(40px);
    pointer-events: none;
}
.csd-cta-card-title {
    font-family: "Inter Tight", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    position: relative;
}
.csd-cta-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 20px;
    position: relative;
}
.csd-cta-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: #ffffff;
    color: #1F4396;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}
.csd-cta-card-btn svg {
    transition: transform 0.3s ease;
}
.csd-cta-card-btn:hover {
    background: #eef2fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.csd-cta-card-btn:hover svg {
    transform: translateX(3px);
}

/* Related */
.csd-related {
    padding: 40px 0;
    background: #f8fafc;
}
.csd-related-header {
    text-align: center;
    margin-bottom: 28px;
}
.csd-related-header .svc-label {
    margin-bottom: 8px;
}
.csd-related-header .svc-title {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .csd-layout {
        grid-template-columns: 1fr 300px;
        gap: 32px;
    }
    .csd-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .csd-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .csd-sidebar-sticky {
        position: static;
    }
    .csd-container {
        padding: 0 20px;
    }
    .csd-main {
        padding: 20px 0 28px;
    }
    .csd-hero-desc {
        font-size: 15px;
    }
    .csd-section {
        margin-bottom: 22px;
    }
    .csd-info-card {
        padding: 16px;
    }
    .csd-share {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .csd-gallery-web {
        grid-template-columns: 1fr;
    }
    .csd-gallery-app {
        grid-template-columns: repeat(2, 1fr);
    }
    .csd-meta-bar {
        flex-direction: column;
        gap: 0;
    }
    .csd-meta-item {
        border-right: none;
        border-bottom: 1px solid #e9edf4;
        padding: 12px 0;
    }
    .csd-meta-item:first-child {
        padding-left: 0;
    }
    .csd-meta-item:last-child {
        border-bottom: none;
        padding-right: 0;
    }
    .csd-hero-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
    .csd-section-title {
        font-size: 18px;
    }
    .csd-section-icon {
        width: 30px;
        height: 30px;
    }
    .csd-hero-client {
        padding: 6px 14px;
        font-size: 12.5px;
    }
}
