/* Font Faces */
@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sen', sans-serif;
    background: linear-gradient(135deg, #000d2e 0%, #001a5e 50%, #000f3d 100%);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
}

/* Background animated elements */
.hero-bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-image: url("../assets/img/herobg3.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 13, 46, 0.5) 0%, rgba(0, 26, 94, 0.5) 50%, rgba(0, 15, 61, 0.5) 100%);
    z-index: 1;
}

.blob {
    position: absolute;
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 2;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #1a5cff;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #0066ff;
    bottom: -80px;
    left: -80px;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

/* Hero Container */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 1;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 92, 255, 0.15);
    border: 1px solid rgba(26, 92, 255, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.badge-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Heading */
.hero-heading {
    font-size: clamp(36px, 8vw, 48px);
    font-weight: 600;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 30px;
    max-width: 900px;
    color: #ffffff;
    animation: slideUp 0.8s ease-out 0.1s both;
}

/* Subheading */
.hero-subheading {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: #1a5cff;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(26, 92, 255, 0.3);
}

.btn-primary:hover {
    background: #1248d9;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 92, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Features Grid */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    width: 100%;
    animation: slideUp 0.8s ease-out 0.4s both;
    padding: 0 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        grid-template-columns: 1fr;
    }
}

/* 
           SECTION 2: STATS
           */
.mt-stats-section {
    background: linear-gradient(135deg, #1a5cff 0%, #0052cc 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.mt-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.mt-stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

.mt-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mt-stat-item {
    text-align: center;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.mt-stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mt-stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mt-stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mt-stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.mt-stat-number {
    font-size: clamp(32px, 6vw, 35px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
}

.mt-stat-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.mt-stat-item:hover .mt-stat-number {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* 
           SECTION 2: STRATEGIC OVERVIEW
           */
.mt-overview-section {
    background: #ffffff;
    padding: 100px 20px;
    position: relative;
}

.mt-overview-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mt-overview-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: #1a5cff;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.mt-overview-text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    letter-spacing: 0.3px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.mt-overview-text strong {
    color: #333333;
    font-weight: 600;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (max-width: 768px) {
    .mt-stats-section {
        padding: 60px 20px;
    }

    .mt-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .mt-overview-section {
        padding: 60px 20px;
    }

    .mt-stat-label {
        font-size: 14px;
    }

    .mt-overview-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mt-stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mt-stat-number {
        font-size: 36px;
    }

    .mt-stat-label {
        font-size: 13px;
    }

    .mt-overview-heading {
        font-size: 28px;
    }

    .mt-overview-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

.mt-accent-line {
    width: 40px;
    height: 3px;
    background: #1a5cff;
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: slideUp 0.8s ease-out 0.05s both;
}

/* 
           SECTION 3: WHY CHOOSE US
           */
.mt-why-choose-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f5f8ff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.mt-why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 92, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s infinite ease-in-out;
    z-index: 0;
}

.mt-why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(26, 92, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
    z-index: 0;
}

.mt-why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mt-why-choose-header {
    text-align: center;
    margin-bottom: 80px;
}

.mt-why-choose-heading {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: #1a5cff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.mt-why-choose-subheading {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.3px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.mt-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mt-why-choose-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(26, 92, 255, 0.08);
    border: 1px solid rgba(26, 92, 255, 0.1);
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.mt-why-choose-card:nth-child(1) {
    animation-delay: 0.2s;
}

.mt-why-choose-card:nth-child(2) {
    animation-delay: 0.3s;
}

.mt-why-choose-card:nth-child(3) {
    animation-delay: 0.4s;
}

.mt-why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 92, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mt-why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 92, 255, 0.15);
    border-color: rgba(26, 92, 255, 0.2);
}

.mt-why-choose-card:hover::before {
    opacity: 1;
}

.mt-card-icon-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.mt-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5cff 0%, #0052cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(26, 92, 255, 0.25);
    transition: all 0.3s ease;
}

.mt-card-icon img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.mt-why-choose-card:hover .mt-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(26, 92, 255, 0.35);
}

.mt-why-choose-card:hover .mt-card-icon img {
    transform: scale(1.1);
}

.mt-card-title {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: #1a5cff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.mt-why-choose-card:hover .mt-card-title {
    color: #0052cc;
}

.mt-card-description {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.mt-why-choose-card:hover .mt-card-description {
    color: #555555;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mt-why-choose-section {
        padding: 60px 20px;
    }

    .mt-why-choose-header {
        margin-bottom: 50px;
    }

    .mt-why-choose-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .mt-why-choose-card {
        padding: 40px 30px;
    }

    .mt-card-icon {
        width: 70px;
        height: 70px;
    }

    .mt-card-icon img {
        height: 28px;
        width: 28px;
    }

    .mt-card-title {
        font-size: 20px;
    }

    .mt-card-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .mt-why-choose-section {
        padding: 50px 16px;
    }

    .mt-why-choose-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .mt-why-choose-subheading {
        font-size: 14px;
    }

    .mt-why-choose-grid {
        gap: 20px;
    }

    .mt-why-choose-card {
        padding: 30px 20px;
    }

    .mt-card-icon {
        width: 60px;
        height: 60px;
    }

    .mt-card-icon img {
        height: 24px;
        width: 24px;
    }

    .mt-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .mt-card-description {
        font-size: 13px;
    }
}

/* 
           WCU SECTION
           */
.wcu-section {
    background: linear-gradient(135deg, #e8f0fe 0%, #dde8fb 50%, #e4ecfd 100%);
    padding: 90px 40px 100px;
    font-family: 'Sen', sans-serif;
}

.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.wcu-header {
    margin-bottom: 64px;
}

.wcu-main-title {
    font-family: 'Sen', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #1a35cc;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.wcu-subtitle {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #5a6a85;
    letter-spacing: 0.2px;
}

.wcu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.wcu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wcu-card.wcu-visible {
    opacity: 1;
    transform: translateY(0);
}

.wcu-card:nth-child(2) {
    transition-delay: 0.15s;
}

.wcu-card:nth-child(3) {
    transition-delay: 0.30s;
}

.wcu-icon-wrap {
    width: 88px;
    height: 88px;
    background: #0d1b3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 28px rgba(13, 27, 62, 0.30);
    flex-shrink: 0;
}

.wcu-icon-wrap img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.wcu-icon-wrap svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wcu-card-title {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a35cc;
    margin-bottom: 12px;
}

.wcu-card-desc {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 15.5px;
    color: #5a6a85;
    line-height: 1.65;
    max-width: 260px;
}

@media (max-width: 900px) {
    .wcu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }

    .wcu-cards-grid .wcu-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .wcu-section {
        padding: 60px 24px 70px;
    }

    .wcu-main-title {
        font-size: 30px;
    }

    .wcu-cards-grid {
        grid-template-columns: 1fr;
    }

    .wcu-cards-grid .wcu-card:last-child {
        grid-column: auto;
    }
}

/* 
           SECTION 3: CORE CAPABILITIES
           */
.s3-core-capabilities {
    font-family: 'Sen', sans-serif;
    background: linear-gradient(180deg,
            #1B44FF 0%,
            #2B52FF 8%,
            #4A72FF 24%,
            #7AA0FF 44%,
            #AABEFF 60%,
            #C8D8FF 74%,
            #DDE8FF 85%,
            #EDF3FF 93%,
            #F4F7FF 100%);
    padding: 80px 24px 100px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.s3-container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.s3-header {
    text-align: center;
    margin-bottom: 60px;
}

.s3-title {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 52px);
    color: #FFFFFF;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.12;
}

.s3-subtitle {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(255, 255, 255, 0.80);
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.65;
}

.s3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.s3-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.s3-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.s3-icon-wrap {
    width: 54px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(27, 71, 255, 0.13), 0 1px 3px rgba(0, 0, 0, 0.07);
}

.s3-icon-wrap img,
.s3-icon-wrap svg {
    width: 54px;
    height: 54px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.s3-card-title {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.30;
}

.s3-card-desc {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    color: #6B7280;
    margin: 0 0 26px;
    line-height: 1.60;
    flex: 1;
}

.s3-learn-more {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    width: fit-content;
    transition: color 0.22s ease, gap 0.22s ease;
}

.s3-learn-more:hover {
    color: #1A47FF;
    gap: 10px;
}

.s3-arrow {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.22s ease;
}

.s3-learn-more:hover .s3-arrow {
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .s3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .s3-core-capabilities {
        padding: 60px 16px 72px;
    }

    .s3-header {
        margin-bottom: 40px;
    }

    .s3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s3-card {
        padding: 28px 22px 26px;
    }
}

/* 
           SECTION 6: OUR PROCESS
           */
.s6-our-process {
    font-family: 'Sen', sans-serif;
    background: #FFFFFF;
    padding: 88px 24px 100px;
    width: 100%;
    box-sizing: border-box;
}

.s6-container {
    max-width: 1100px;
    margin: 0 auto;
}

.s6-header {
    text-align: center;
    margin-bottom: 72px;
}

.s6-title {
    font-family: 'Sen', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 52px);
    color: #0D1B5E;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.12;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.s6-subtitle {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.8vw, 17px);
    color: #4A5568;
    margin: 0 auto;
    max-width: 580px;
    line-height: 1.70;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}

.s6-our-process.s6-visible .s6-title,
.s6-our-process.s6-visible .s6-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.s6-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.s6-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.s6-step.s6-step-visible {
    opacity: 1;
    transform: translateY(0);
}

.s6-step--last {
    flex: 0 0 auto;
}

.s6-step-top {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 28px;
}

.s6-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #2B4EFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(43, 78, 255, 0.35);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s6-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(43, 78, 255, 0.20);
    animation: s6-pulse 2.4s ease-out infinite;
    opacity: 0;
}

@keyframes s6-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.s6-step:nth-child(1) .s6-circle::before {
    animation-delay: 0s;
}

.s6-step:nth-child(2) .s6-circle::before {
    animation-delay: 0.6s;
}

.s6-step:nth-child(3) .s6-circle::before {
    animation-delay: 1.2s;
}

.s6-step:nth-child(4) .s6-circle::before {
    animation-delay: 1.8s;
}

.s6-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(43, 78, 255, 0.45);
}

.s6-num {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1;
}

.s6-connector {
    flex: 1;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    overflow: visible;
}

.s6-dashed-line {
    width: 100%;
    height: 15px;
    overflow: visible;
}

.s6-dashed-line line {
    stroke-dasharray: 8 7;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.9s ease;
}

.s6-step.s6-step-visible .s6-dashed-line line {
    stroke-dashoffset: 0;
}

.s6-dashed-line polyline {
    opacity: 0;
    transition: opacity 0.3s ease 0.85s;
}

.s6-step.s6-step-visible .s6-dashed-line polyline {
    opacity: 1;
}

.s6-step-body {
    padding-left: 4px;
    max-width: 220px;
}

.s6-step--last .s6-step-body {
    padding-left: 4px;
}

.s6-step-title {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #0D1B5E;
    margin: 0 0 10px;
    line-height: 1.25;
}

.s6-step-desc {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    color: #6B7280;
    margin: 0;
    line-height: 1.60;
}

@media (max-width: 820px) {
    .s6-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-left: 16px;
    }

    .s6-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        flex: unset;
        width: 100%;
        margin-bottom: 0;
    }

    .s6-step-top {
        flex-direction: column;
        align-items: center;
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .s6-connector {
        flex: unset;
        width: 20px;
        height: 60px;
        padding: 4px 0;
    }

    .s6-dashed-line {
        width: 20px;
        height: 100%;
        transform: rotate(90deg);
        transform-origin: center center;
    }

    .s6-step-body {
        padding-left: 0;
        padding-top: 8px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .s6-our-process {
        padding: 60px 20px 72px;
    }

    .s6-header {
        margin-bottom: 52px;
    }

    .s6-circle {
        width: 60px;
        height: 60px;
    }

    .s6-num {
        font-size: 20px;
    }
}

/* 
           CSS CUSTOM PROPERTIES
           */
:root {
    --bg-white: #ffffff;
    --bg-dark: #00123A;
    --blue-primary: #1248d9;
    --blue-bright: #0066ff;
    --blue-light: #1a5cff;
    --blue-accent: #668FE9;
    --blue-row-bg: #EEF3FF;
    --green-accent: #22c55e;
    --green-light: #4ade80;
    --white: #ffffff;
    --text-dark: #00123A;
    --text-muted: #668FE9;
    --table-bg: #ffffff;
    --row-border: #e2e8f0;
    --border-left: #1a5cff;
    --bg: #e8f0fe;
    --white: #ffffff;
    --blue-dark: #0d2ea0;
    --blue-primary: #1a5cff;
    --blue-bright: #0066ff;
    --blue-border: #1a5cff;
    --text-body: #4a5568;
    --text-title: #1a5cff;
}

/* 
           SECTION 7: MEASURABLE RESULTS
           */
.section-results {
    background-color: var(--bg-dark);
    padding: 90px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-results .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-results .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-results .section-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-table-wrapper {
    width: 100%;
    max-width: 900px;
    background: var(--table-bg);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead tr {
    background: var(--blue-primary);
}

.comparison-table thead th {
    padding: 18px 28px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2px;
}

.comparison-table thead th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--row-border);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f8faff;
}

.comparison-table tbody td {
    padding: 20px 28px;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    text-align: center;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0f172a;
    font-size: 15px;
}

.td-before {
    color: #64748b !important;
    font-weight: 400 !important;
}

.td-after {
    color: var(--blue-bright) !important;
    font-weight: 700 !important;
}

.td-improvement {
    font-weight: 700 !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.badge-green {
    background: #dcfce7;
    color: #15803d;
}

.badge-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
}

.metric-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.metric-card {
    background: var(--blue-primary);
    border-radius: 16px;
    padding: 28px 28px 24px;
}

.metric-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.metric-card-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-card-label .card-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

.metric-card-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.progress-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    height: 8px;
    width: 100%;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--white);
    width: 0%;
    transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 700px) {
    .metric-cards-grid {
        grid-template-columns: 1fr;
    }

    .section-results .section-title {
        font-size: 30px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 14px 14px;
        font-size: 13px;
    }
}

/* 
           SECTION 8: CTA ANIMATIONS
           */
@keyframes s8DotDrift {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 28px 28px;
    }
}

@keyframes s8OrbRight {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.20;
    }

    50% {
        transform: translateY(-50%) scale(1.13);
        opacity: 0.30;
    }
}

@keyframes s8OrbLeft {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.10;
    }

    50% {
        transform: translateY(-50%) scale(1.10);
        opacity: 0.18;
    }
}

@keyframes s8FadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes s8FadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes s8PopIn {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(16px);
    }

    70% {
        transform: scale(1.04) translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes s8Shimmer {
    0% {
        left: -75%;
    }

    100% {
        left: 130%;
    }
}

@keyframes s8ArrowNudge {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* 
           SECTION 8: CTA
           */
.section-cta {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 40px;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(102, 143, 233, 0.13) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: s8DotDrift 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.s8-orb-right {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(26, 92, 255, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: s8OrbRight 6s ease-in-out infinite;
}

.s8-orb-left {
    position: absolute;
    left: -140px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(18, 72, 217, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: s8OrbLeft 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 0;
}

.cta-title.s8-animate {
    animation: s8FadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.cta-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    opacity: 0;
}

.cta-subtitle.s8-animate {
    animation: s8FadeIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--blue-light);
    color: var(--white);
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 38px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 24px rgba(26, 92, 255, 0.35);
}

.cta-btn.s8-animate {
    animation: s8PopIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
    animation: s8Shimmer 3.5s ease-in-out 1.5s infinite;
    pointer-events: none;
}

.cta-btn:hover {
    background-color: var(--blue-bright);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(26, 92, 255, 0.55);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(26, 92, 255, 0.35);
}

.cta-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.cta-btn:hover .cta-btn-arrow {
    animation: s8ArrowNudge 0.5s ease forwards;
}

@media (max-width: 600px) {
    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .cta-btn {
        font-size: 15px;
        padding: 16px 28px;
    }
}

/* 
           SECTION 9: EXECUTION & PROCESSING STANDARDS
           */
@keyframes s9SlideIn {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes s9FadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes s9BarGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.section-standards {
    background-color: var(--bg-white);
    padding: 90px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s9-header {
    text-align: center;
    margin-bottom: 52px;
    opacity: 0;
}

.s9-header.s9-animate {
    animation: s9FadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.s9-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.s9-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
}

.s9-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s9-row {
    display: flex;
    align-items: center;
    gap: 18px;
    background-color: var(--blue-row-bg);
    border-radius: 10px;
    padding: 22px 28px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    cursor: default;
    transition: box-shadow 0.25s ease, transform 0.22s ease;
}

.s9-row.s9-animate {
    animation: s9SlideIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.s9-row:hover {
    box-shadow: 0 6px 24px rgba(26, 92, 255, 0.12);
    transform: translateX(4px);
}

.s9-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--border-left);
    border-radius: 10px 0 0 10px;
    transform: scaleY(0);
    transform-origin: top;
    transition: none;
}

.s9-row.s9-animate::before {
    animation: s9BarGrow 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.s9-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
}

.s9-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.s9-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue-light);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.s9-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.1px;
}

@media (max-width: 600px) {
    .s9-title {
        font-size: 28px;
    }

    .s9-label {
        font-size: 15px;
    }

    .s9-row {
        padding: 18px 20px;
    }

    .section-standards {
        padding: 60px 20px;
    }
}

/* =================
           KEYFRAMES
        =================*/

/* Header title fade up */
@keyframes s10FadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card entrance - from bottom */
@keyframes s10CardUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Left border bar grow down */
@keyframes s10BarGrow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Icon slide in from left */
@keyframes s10IconSlide {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Title word reveal */
@keyframes s10TitleReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle fade */
@keyframes s10SubFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Floating dot grid drift */
@keyframes s10DotDrift {
    0% {
        background-position: 0px 0px;
    }

    100% {
        background-position: 30px 30px;
    }
}

/* Card shimmer on hover */
@keyframes s10Shimmer {
    0% {
        left: -80%;
    }

    100% {
        left: 130%;
    }
}

/* Icon pulse ring */
@keyframes s10IconPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

/* =================
           SECTION
        =================*/
.s10-value-impact {
    background-color: var(--bg);
    padding: 90px 40px 100px;
    position: relative;
    overflow: hidden;
}

/* Subtle animated dot grid background */
.s10-value-impact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26, 92, 255, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: s10DotDrift 14s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.s10-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* =================
           HEADER
        =================*/
.s10-header {
    text-align: center;
    margin-bottom: 60px;
}

.s10-title {
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    opacity: 0;
}

.s10-title.s10-animate {
    animation: s10FadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.s10-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    opacity: 0;
}

.s10-subtitle.s10-animate {
    animation: s10SubFade 0.75s ease 0.25s forwards;
}

/* =================
           GRID
        =================*/
.s10-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* =================
           CARD
        =================*/
.s10-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 32px 32px 0;
    display: flex;
    gap: 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}

/* Staggered entrance */
.s10-card.s10-animate {
    animation: s10CardUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.s10-card:nth-child(1) {
    animation-delay: 0.10s;
}

.s10-card:nth-child(2) {
    animation-delay: 0.22s;
}

.s10-card:nth-child(3) {
    animation-delay: 0.34s;
}

.s10-card:nth-child(4) {
    animation-delay: 0.46s;
}

/* Hover lift + shadow */
.s10-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 92, 255, 0.13);
}

/* Shimmer sweep on hover */
.s10-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(26, 92, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
    transition: none;
}

.s10-card:hover::after {
    animation: s10Shimmer 0.65s ease forwards;
}

/* ---- Blue Left Border ---- */
.s10-card-border {
    width: 4px;
    min-height: 100%;
    background-color: var(--blue-border);
    border-radius: 4px 0 0 4px;
    flex-shrink: 0;
    margin-right: 24px;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
}

.s10-card.s10-animate .s10-card-border {
    animation: s10BarGrow 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: inherit;
}

/* ---- Card Body ---- */
.s10-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---- Card Title Row ---- */
.s10-card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.s10-card.s10-animate .s10-card-title-row {
    animation: s10TitleReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    /* delay slightly after card entrance */
    animation-delay: calc(var(--card-delay, 0.10s) + 0.15s);
}

.s10-card:nth-child(1) .s10-card-title-row {
    --card-delay: 0.10s;
}

.s10-card:nth-child(2) .s10-card-title-row {
    --card-delay: 0.22s;
}

.s10-card:nth-child(3) .s10-card-title-row {
    --card-delay: 0.34s;
}

.s10-card:nth-child(4) .s10-card-title-row {
    --card-delay: 0.46s;
}

/* ---- Icon ---- */
.s10-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
}

.s10-card.s10-animate .s10-icon {
    animation: s10IconSlide 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--card-delay, 0.10s) + 0.2s);
}

/* Pulse ring on icon */
.s10-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(26, 92, 255, 0.25);
    opacity: 0;
}

.s10-card:hover .s10-icon::before {
    animation: s10IconPulse 0.8s ease-out forwards;
}

.s10-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Fallback SVG */
.s10-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- Card Title Text ---- */
.s10-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-title);
    letter-spacing: 0.1px;
    transition: color 0.2s ease;
}

.s10-card:hover .s10-card-title {
    color: var(--blue-bright);
}

/* ---- Card Description ---- */
.s10-card-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.65;
    opacity: 0;
    transition: color 0.2s ease;
}

.s10-card.s10-animate .s10-card-desc {
    animation: s10SubFade 0.6s ease forwards;
    animation-delay: calc(var(--card-delay, 0.10s) + 0.3s);
}

.s10-card:hover .s10-card-desc {
    color: #2d3748;
}

/* =================
           RESPONSIVE
        =================*/
@media (max-width: 700px) {
    .s10-grid {
        grid-template-columns: 1fr;
    }

    .s10-value-impact {
        padding: 60px 20px 72px;
    }

    .s10-card {
        padding: 24px 20px 24px 0;
    }
}

/* section11bygpt */
/* ================= SECTION 11 ================= */
.section11-testimonials {
    padding: 7rem 2rem 8rem;
    text-align: center;
    background-color: white;
}

.section11-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section11-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.section11-subtitle {
    max-width: 760px;
    margin: 0 auto 5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-body);
}

/* Cards Layout */
.section11-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Card */
.section11-card {
    background: var(--blue-primary);
    padding: 3rem 2.5rem;
    border-radius: 1.25rem;
    text-align: left;
    transition: all .4s ease;
    position: relative;
    transform: scale(.92);
    opacity: .6;
}

.section11-card.section11-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 25px 50px rgba(0, 18, 58, .18);
}

/* Stars */
.section11-stars {
    display: flex;
    gap: .3rem;
    margin-bottom: 2rem;
}

.section11-stars span {
    font-size: 20px;
    display: inline-block;
    animation: starJump 1.5s infinite ease-in-out;
}

/* delay for each star */
.section11-stars span:nth-child(1) {
    animation-delay: 0s;
}

.section11-stars span:nth-child(2) {
    animation-delay: 0.4s;
}

.section11-stars span:nth-child(3) {
    animation-delay: 0.6s;
}

.section11-stars span:nth-child(4) {
    animation-delay: 0.8s;
}

.section11-stars span:nth-child(5) {
    animation-delay: 0.9s;
}

@keyframes starJump {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }
}

.section11-star {
    width: 1.2rem;
    height: 1.2rem;
    background: var(--white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%,
            79% 91%, 50% 70%, 21% 91%,
            32% 57%, 2% 35%, 39% 35%);
    transition: transform .3s ease;
}

.section11-card.section11-active .section11-star {
    transform: scale(1.15);
}

/* Text */
.section11-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--white);
    margin-bottom: 3rem;
}

/* Profile */
.section11-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section11-avatar {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.section11-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.section11-role {
    font-size: .9rem;
    color: var(--white);
    opacity: .85;
}

/* Responsive */
@media(max-width:992px) {
    .section11-cards {
        grid-template-columns: 1fr;
    }

    .section11-card {
        transform: scale(1);
        opacity: 1;
    }
}

/* section12bygpt */
/* ================= SECTION 12 ================= */
.section12-faq {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
    padding: 6rem 2rem 7rem;
}

.section12-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT */
.section12-left h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section12-left p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 3rem;
}

/* FAQ ITEM */
.section12-faq-item {
    background: var(--bg-white);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all .3s ease;
}

.section12-question {
    padding: 1.4rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.section12-question i {
    transition: transform .3s ease;
}

.section12-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 1.8rem;
    font-size: .95rem;
    color: var(--text-body);
    line-height: 1.7;
}

.section12-faq-item.section12-active .section12-answer {
    max-height: 200px;
    padding: 0 1.8rem 1.2rem;
}

.section12-faq-item.section12-active .section12-question i {
    transform: rotate(180deg);
}

/* RIGHT IMAGE */
.section12-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 18, 58, .25);
    margin-top: 130px;
}

.section12-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 430px;
}
.section12-image{
    display: inline-block;
    perspective: 1200px; /* creates 3D depth */
}

.section12-image img{
    max-width: 100%;
    display: block;
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
}

/* Responsive */
@media(max-width:992px) {
    .section12-container {
        grid-template-columns: 1fr;
    }

    .section12-image {
        margin-top: 3rem;
    }
}