/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 68px;
}

#hero .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(30, 58, 138, 0.5), rgba(30, 64, 175, 0.2)), url('../assets/hero_bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #93c5fd;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.hero-title .accent {
    background: linear-gradient(135deg, #93c5fd, #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue-400));
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.55);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 4rem;
}

.pillar {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 1.75rem 2rem;
    transition: background 0.25s;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.16);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    color: #93c5fd;
}

.pillar h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.pillar p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ─── TRUSTED PARTNER ─── */
#partner {
    background: var(--gray-100);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partner-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.partner-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

.partner-quote {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

.partner-quote blockquote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.partner-quote cite {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-400);
    font-style: normal;
}

.partner-quote .stars {
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.partner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.stat-card .value {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-400);
    letter-spacing: -0.03em;
}

.stat-card .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ─── FEATURES ─── */
#features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--card-border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
}

.feature-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.feature-card-body h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}

.feature-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ─── SERVICES REDESIGN ─── */
#services {
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--blue-100);
}

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

.service-card-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-50);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    background: var(--blue-400);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.service-card-icon .material-symbols-rounded {
    font-size: 2rem;
}

.service-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}




/* ─── WHY CHOOSE US REDESIGN (Screenshot Style) ─── */
#why-choose-us {
    padding: 5rem 0;
}

.wcu-header {
    margin: 0 auto 2.5rem;
    max-width: 800px;
    text-align: center;
}

.wcu-pill {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--blue-50);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--blue-400);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.wcu-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gray-900);
}

.text-blue {
    color: var(--blue-400);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 1.25rem auto 0;
    max-width: 600px;
}

.wcu-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
}

.wcu-box {
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.wcu-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wcu-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--blue-100);
}

.wcu-box:hover::after {
    transform: scaleX(1);
}

.wcu-box--light {
    background: var(--gray-50);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.wcu-box--dark {
    background: var(--blue-900);
    color: #ffffff;
}

.wcu-box--dark h3 {
    color: #ffffff !important;
}

.wcu-box--dark p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Grid Spans */
.wcu-box--wide {
    grid-column: span 3;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
}

.wcu-box--tall {
    grid-row: span 2;
    justify-content: space-between;
}

/* Icon Circle Style */
.wcu-icon-circle {
    width: 64px;
    height: 64px;
    background: var(--blue-50);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    margin-bottom: 0;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.wcu-box:hover .wcu-icon-circle {
    background: var(--blue-400);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.wcu-box--dark .wcu-icon-circle {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.wcu-icon-circle .material-symbols-rounded {
    font-size: 1.5rem;
}

/* Content Wrap for Wide Card */
.wcu-content-wrap {
    flex: 1;
}

.wcu-box h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.wcu-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Dark Card Button */
.wcu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--green-500);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.wcu-btn:hover {
    background: var(--green-600);
}

.wcu-btn .material-symbols-rounded {
    font-size: 1.25rem;
}

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

    .wcu-box--tall {
        grid-row: span 1;
        grid-column: span 2;
    }
}

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

    .wcu-box--wide,
    .wcu-box--tall {
        grid-column: span 1;
        flex-direction: column;
    }

    .wcu-box {
        padding: 2rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.testimonial-card {
    background: var(--gray-50);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.testimonial-quote {
    color: var(--blue-400);
    margin-bottom: 1.25rem;
}

.testimonial-quote span {
    font-size: 2.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-100);
}

.author-info h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── NEWSLETTER ─── */
#newsletter {
    background: linear-gradient(135deg, var(--gray-100) 0%, #e8f0fe 50%, var(--gray-100) 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.newsletter-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-inner .section-title {
    margin-bottom: 0.5rem;
}

.newsletter-inner .section-sub {
    margin: 0.5rem auto 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    color: var(--gray-900);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* ─── CONTACT MINI ─── */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.contact-item .material-symbols-rounded {
    font-size: 1rem;
    color: var(--blue-400);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.4;
}

.contact-item a:hover {
    color: var(--blue-400);
}

.contact-form {
    margin-top: 0.5rem;
}

.contact-form input {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 0.6rem 0.875rem;
    color: var(--gray-900);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    outline: none;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact-form button:hover {
    opacity: 0.9;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }

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

    .wcu-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
        padding: 2.5rem;
    }

    .benefit-card:nth-child(4) .benefit-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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

    .hero-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #hero {
        min-height: 60vh;
        align-items: flex-end;
        padding-bottom: 3rem;
    }

    #hero .hero-bg {
        background: linear-gradient(rgba(30, 58, 138, 0.55), rgba(30, 64, 175, 0.35)),
            url('../assets/hero_bg.jpg') center top / cover no-repeat;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

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

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

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

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

    .partner-stats {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}