* {
    font-family: "Inter Tight", sans-serif;
}

/* ================= HEADER ================= */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: nowrap; /* 🔥 KHÓA KHÔNG XUỐNG DÒNG */
}

/* LOGO */
.site-branding img {
    max-height: 36px;
    width: auto;
}

/* MENU */
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    padding: 8px 0;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: #2563eb;
}

/* RIGHT ACTION */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;

    white-space: nowrap;
    flex-shrink: 0;
}

.support {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.support strong {
    display: block;
    font-size: 14px;
    color: #111827;
}

/* BUTTON */
.btn-contact {
    background: #1d4ed8;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.btn-contact:hover {
    background: #1e40af;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
}


/* ================= HERO ================= */
.hero {
    background: #ffffff;
    overflow: hidden;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

/* LEFT */
.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.3;
    font-weight: 700;
    color: #0b0f2b;
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: lineFadeUp 0.8s ease-out forwards;
}

/* delay cho từng dòng */
.hero-title span:nth-child(1) {
    animation-delay: 0.4s;
}
.hero-title span:nth-child(2) {
    animation-delay: 0.8s;
}
.hero-title span:nth-child(3) {
    animation-delay: 1.2s;
}


@keyframes lineFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


.hero-desc {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.9s ease-out forwards;
    animation-delay: 1.2s; /* sau dòng H1 cuối */
}

.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.typewriter {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    min-height: 56px; /* tránh nhảy layout */
}

.typewriter::after {
    content: "|";
    margin-left: 2px;
    animation: blink 1s infinite;
    opacity: 0.7;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}



.btn-primary,
.btn-secondary {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}


.btn-primary {
    box-shadow: 0 12px 30px rgba(11, 60, 227, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 18px 40px rgba(11, 60, 227, 0.35);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 36px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #0b3ce3;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    margin-bottom: 0;
}

.btn-primary:hover {
    background: #082fb2;
    color: #ffffff;
}

.btn-secondary {
    background: #e0e7ff;
    color: #0b3ce3;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #c7d2fe;
}

/* RIGHT IMAGE */
.hero-image {
    position: absolute;
    right: 0;
    width: 800px;
    height: 420px;
}

.hero-image img {
    -webkit-mask-image: url("../images/mask.png");
    -webkit-mask-size: cover;
    -webkit-mask-position: bottom right;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-image {
        width: 400px;
        height: 190px;
        position: static;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 38px;
    }
}


/* ================= STATS BAR ================= */
.stats-bar {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 0;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #0b0f2b;
}

.stat-item span {
    font-size: 14px;
    color: #374151;
}

.stat-review .label {
    font-size: 11px;
    color: #6b7280;
}

.review {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
}

.stat-review small {
    font-size: 12px;
    color: #6b7280;
}

/* ================= WHAT WE DO ================= */
.what-we-do {
    padding: 80px 24px;
    color: #ffffff;
}

.what-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.what-header {
    margin-bottom: 60px;
    background: #002157;
    padding: 24px 24px;
    background-image: url("../images/shape-dots.svg");
    background-position: 90% 100%;
    background-repeat: no-repeat;
    background-size: auto;
}

.badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    color: #DEE0FF;
    margin-bottom: 80px;
}

.what-header h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
    color: #DEE0FF;

}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    color: #0A0D31;
}

.feature-item .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 640px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .what-header h2 {
        font-size: 32px;
    }
}


/* ================= ABOUT STRIP ================= */
.about-strip {
    background: #ffffff;
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 0;
    border-top: 1px solid #e5e7eb;
}

.about-link {
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
    text-decoration: underline;
}

.about-link:hover {
    color: #1e40af;
}

/* BLUE BAR */
.about-bar {
    height: 16px;
    width: 100%;
}


/* ================= SOLUTIONS ================= */
.solutions {
    background: linear-gradient(180deg, #c6d8f0 0%, #eef2ff 100%);
    padding: 100px 24px;
}

.solutions-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.solutions-header {
    margin-bottom: 48px;
}

.solutions-header .badge {
    display: inline-block;
    background: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 16px;
    color: #1d4ed8;
}

.solutions-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0b0f2b;
}

/* GRID */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.solution-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.solution-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
    width: 65px;
    height: 65px;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b0f2b;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}

.learn-more {
    font-size: 14px;
    font-weight: 500;
    color: #1d4ed8;
}

.learn-more:hover {
    color: #1e40af;
}

/* FOOTER */
.solutions-footer {
    margin-top: 60px;
    text-align: center;
}

.btn-primary {
    background: #0b3ce3;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.btn-primary:hover {
    background: #082fb2;
    color: #ffffff;
}

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

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

    .solutions-header h2 {
        font-size: 32px;
    }
}


/* ================= INDUSTRIES ================= */
.industries {
    background: #ffffff;
    padding: 120px 24px;
}

.industries-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* BADGE */
.industries .badge {
    display: inline-block;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 24px;
}

/* TITLE */
.industries-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
    color: #0b0f2b;
    margin-bottom: 56px;
}

/* LIST */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-bottom: 32px;
}

/* ITEM */
.industry-item {
    display: flex;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.industry-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* LINK */
.industries-link {
    font-size: 14px;
    font-weight: 500;
    color: #1d4ed8;
    text-decoration: underline;
}

.industries-link:hover {
    color: #1e40af;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .industries-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .industries {
        padding: 80px 20px;
    }

    .industries-title {
        font-size: 28px;
    }

    .industries-list {
        gap: 14px;
    }
}


/* ================= VENDORS ================= */
.vendors {
    background: #1f2223;
    padding: 120px 24px;
    color: #ffffff;
}

.vendors-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* HEADER */
.vendors-header {
    max-width: 720px;
    margin-bottom: 60px;
}

.badge.dark {
    display: inline-block;
    background: #2b2f31;
    color: #a5b4fc;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.vendors-header h2 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 20px;
}

.vendors-header p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

/* NAV */
.vendors-nav {
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.vendors-nav span {
    font-size: 15px;
    font-weight: 500;
}

.nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #2b2f31;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

.nav-btn:hover {
    background: #374151;
}

/* GRID */
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.vendor-card {
    background: #24282a;
    border-radius: 10px;
    padding: 32px;
}

.vendor-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}

.vendor-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 24px;
}

/* VIEW MORE */
.view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff !important;
    text-decoration: none;
}

.view-more::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #374151;
    font-size: 14px;
}

.view-more:hover {
    color: #ffffff;
}

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

@media (max-width: 640px) {
    .vendors {
        padding: 80px 20px;
    }

    .vendors-header h2 {
        font-size: 32px;
    }

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


/* ================= SUCCESS STORIES ================= */
.success-stories {
    background: #ffffff;
    padding: 120px 24px;
}

.success-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* HEADER */
.success-header {
    margin-bottom: 60px;
}

.success-header .badge {
    display: inline-block;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 16px;
}

.success-header h2 {
    font-size: 42px;
    font-weight: 400;
    color: #0b0f2b;
}

/* GRID */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.story-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.story-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    max-height: 80px;
}

.story-image.blue {
    background: #0b2f7b;
}

.story-image.black {
    background: #000000;
}

.story-image.light {
    background: #f5f5f5;
}

/* CONTENT */
.story-content {
    padding: 28px;
}

.story-tag {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 12px;
}

.story-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b0f2b;
    line-height: 1.4;
    margin-bottom: 14px;
}

.story-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
}

/* LIST */
.story-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.story-list li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.story-list li::before {
    content: "✓";
    color: #2563eb;
    margin-right: 8px;
}

/* LINK */
.story-link {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    text-decoration: underline;
}

.story-link:hover {
    color: #1d4ed8;
}

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

@media (max-width: 640px) {
    .success-stories {
        padding: 80px 20px;
    }

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

    .success-header h2 {
        font-size: 32px;
    }
}


/* ================= TESTIMONIAL ================= */
.testimonial {
    background: #ffffff;
    padding: 140px 24px;
}

.testimonial-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* LOGO */
.testimonial-logo {
    margin-bottom: 40px;
}

.testimonial-logo img {
    width: 56px;
    height: 56px;
}

/* QUOTE */
.testimonial-quote {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
    color: #0b0f2b;
    margin-bottom: 40px;
}

/* AUTHOR */
.testimonial-author {
    margin-bottom: 60px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #0b0f2b;
}

.testimonial-author span {
    font-size: 14px;
    color: #6b7280;
}

/* FOOTER */
.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 0;
    z-index: 9999;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: #111827;
    font-size: 18px;
    cursor: pointer;
}

.nav-btn:hover {
    background: #e5e7eb;
}

/* RATING */
.testimonial-rating {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: end;
}

.rating-block {
    text-align: left;
    font-size: 13px;
    color: #6b7280;
}

.rating-block strong {
    font-size: 16px;
    color: #111827;
}

.rating-block .stars {
    color: #f59e0b;
    font-size: 14px;
    display: block;
    margin: 4px 0;
}

.rating-block .label {
    font-size: 11px;
    letter-spacing: 0.05em;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .testimonial {
        padding: 100px 20px;
    }

    .testimonial-quote {
        font-size: 20px;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-rating {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .rating-block {
        text-align: center;
    }
}




/* ================= CONTACT CTA ================= */
.contact-cta {
    background: linear-gradient(90deg, #1f2223 0%, #1f2223 38%, #2a2e30 42%, #AFC6E6 100%);
    padding: 120px 24px;
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

/* LEFT */
.contact-content {
    color: #ffffff;
}


.footer-right a {
    color: #ffffff;
}

.badge.dark {
    display: inline-block;
    background: #2b2f31;
    color: #a5b4fc;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 20px;
}

.contact-phone {
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-phone strong {
    color: #ffffff;
}

/* BENEFITS */
.benefits h4,
.steps h4 {
    font-size: 20px;
    margin-bottom: 14px;
}

.benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.benefits li {
    font-size: 16px;
    color: #e5e7eb;
}

.benefits li::before {
    content: "✔";
    color: #ffffff;
    margin-right: 8px;
}

/* STEPS */
.steps ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.steps li {
    font-size: 16px;
    color: #e5e7eb;
    position: relative;
    padding-left: 15px;
}

.steps li::before {
    content: counter(step);
}

.steps ol {
    counter-reset: step;
}

.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #ffffff;
}

/* RIGHT FORM */
.contact-form {
    background: #ffffff;
    border-radius: 10px;
    padding: 32px;
}

.contact-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    margin-top: 12px;
    background: #0b3ce3;
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background: #082fb2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        background: #1f2223;
    }

    .contact-form {
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .contact-content h2 {
        font-size: 32px;
    }

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

    .steps ol {
        flex-direction: column;
    }
}


/* ================= PARTNERS ================= */
.partners {
    background: #ffffff;
    padding: 120px 24px;
}

.partners-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.partners-content .badge {
    display: inline-block;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 20px;
}

.partners-content h2 {
    font-size: 37px;
    font-weight: 500;
    color: #0b0f2b;
    margin-bottom: 20px;
}

.partners-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    max-width: 420px;
}

/* RIGHT LOGOS */
.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: center;
}

.partners-logos img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.2s ease;
}

.partners-logos img:hover {
    filter: none;
    opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .partners-inner {
        grid-template-columns: 1fr;
    }

    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .partners {
        padding: 80px 20px;
    }

    .partners-content h2 {
        font-size: 32px;
    }

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


/* ================= FOOTER ================= */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 75px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* LEFT */
.footer_row {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.footer_row .footer-col {
    width: 100%;
}

.footer-col ul {
    width: 100%;
}

.footer-col h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul.spaced {
    margin-top: 32px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    font-size: 16px;
    text-decoration: none;
}
.footer-col a:hover {
    color: #ffffff;
}

/* NEWSLETTER */
.footer-newsletter {
    margin-top: 60px;
    max-width: 420px;
}

.footer-newsletter input {
    background: transparent;
    border: 1px solid #374151;
    padding: 12px 14px;
    color: #ffffff;
    border-radius: 6px;
    margin-bottom: 14px;
}

.footer-newsletter input::placeholder {
    color: #9ca3af;
}

.consent {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.btn-send {
    background: #0b3ce3;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-send:hover {
    background: #082fb2;
}

/* RIGHT */
.footer-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/footer-dots.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0 auto;

    opacity: 0;
}

/* CHỈ KHI SCROLL TỚI */
.footer-right.is-visible {
    animation: dotsZoom 1.4s ease-out forwards;
}

@keyframes dotsZoom {
    from {
        background-size: 0 auto;
        opacity: 0;
    }
    to {
        background-size: 90% auto;
        opacity: 1;
    }
}


.footer-right .footer-center {
    background-color: #000000;
    margin: 0;
    padding: 20px 0 75px 0;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    justify-content: center;
}

.footer-brand img {
    width: 36px;
}

.btn-primary {
    background: #0b3ce3;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 40px;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .footer-right {
        margin-top: 80px;
    }
}

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


.footer-newsletter input[type="email"]:focus {
    color: #ffffff;
}


/* ================= SCROLL TO TOP ================= */
#scrollTop {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: none;
    background: #0b3ce3;
    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 12px 30px rgba(11, 60, 227, 0.35);

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;

    transition: all 0.3s ease;
    z-index: 999;
}

/* Hiện nút */
#scrollTop.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#scrollTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 60, 227, 0.45);
}


/* ================= PROJECTS ================= */
.projects {
    padding: 80px 24px;
    background: #ffffff;
}

.projects-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: #eef2ff;
    color: #1e40af;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0b0f2b;
    margin-bottom: 48px;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */
.project-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.35s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.project-thumb {
    position: relative;
    overflow: hidden;
}

.project-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-thumb img {
    transform: scale(1.08);
}

/* CONTENT */
.project-content {
    padding: 24px 22px 28px;
}

.project-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0b0f2b;
    margin-bottom: 12px;
}

.project-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 16px;
}

/* META */
.project-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 13px;
    color: #374151;
}

.project-meta li {
    margin-bottom: 6px;
}

/* LINK */
.project-link {
    font-size: 14px;
    font-weight: 500;
    color: #0b3ce3;
    text-decoration: none;
}

.project-link:hover {
    text-decoration: underline;
}

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

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

.story-image {
    position: relative;
    width: 100%;
    height: 220px;          /* 👈 QUAN TRỌNG */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* ===== STORY FALLBACK (SOFT & PREMIUM) ===== */

.story-fallback {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 64px;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-transform: uppercase;

    color: rgba(0,0,0,.65);
    background: #f5f5f5;
}

/* SOFT BLUE */
.story-image.blue .story-fallback {
    background: linear-gradient(135deg, #eaf1ff, #dbe7ff);
    color: #2b5cff;
}

/* SOFT INDIGO */
.story-image.indigo .story-fallback {
    background: linear-gradient(135deg, #eef0ff, #e1e5ff);
    color: #4c5cff;
}

/* SOFT TEAL */
.story-image.teal .story-fallback {
    background: linear-gradient(135deg, #e6f6f3, #d7efe9);
    color: #1f8f7a;
}

/* SOFT EMERALD */
.story-image.emerald .story-fallback {
    background: linear-gradient(135deg, #e9f8ef, #daf1e4);
    color: #2e8b57;
}

/* SOFT VIOLET */
.story-image.violet .story-fallback {
    background: linear-gradient(135deg, #f1edff, #e7e1ff);
    color: #6a5cff;
}

/* SOFT PINK */
.story-image.pink .story-fallback {
    background: linear-gradient(135deg, #fdeef2, #f9dde5);
    color: #d94c6a;
}

/* SOFT ROSE */
.story-image.rose .story-fallback {
    background: linear-gradient(135deg, #fff0f3, #ffe2e8);
    color: #c43b5c;
}

/* SOFT LAVENDER */
.story-image.lavender .story-fallback {
    background: linear-gradient(135deg, #f6f3ff, #ede8ff);
    color: #7a6cff;
}

/* SOFT SKY */
.story-image.sky .story-fallback {
    background: linear-gradient(135deg, #eef7ff, #e1f0ff);
    color: #3a7bd5;
}

/* SOFT MINT */
.story-image.mint .story-fallback {
    background: linear-gradient(135deg, #ecfbf6, #ddf5ec);
    color: #1f9d7a;
}

.story-image {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.story-card:hover .story-fallback {
    transform: scale(1.05);
    filter: brightness(1.05);
    transition: all .35s ease;
}

.story-fallback {
    font-family: "Playwrite IN Guides", cursive;
    font-style: normal;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Active menu */
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
    color: #1e40af; /* xanh đậm */
    font-weight: 600;
}

/* underline */
.main-navigation .current-menu-item > a::before,
.main-navigation .current-menu-ancestor > a::before {
    width: 100%;
}


/* ===== PROJECT THUMB ===== */

.project-thumb {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

/* ===== FALLBACK ===== */

.project-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Playfair Display", serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

/* ===== MÀU NHẸ – CHUYÊN NGHIỆP ===== */

.project-thumb.blue {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

.project-thumb.indigo {
    background: linear-gradient(135deg, #e0e7ff, #a5b4fc);
}

.project-thumb.teal {
    background: linear-gradient(135deg, #ccfbf1, #5eead4);
}

.project-thumb.emerald {
    background: linear-gradient(135deg, #d1fae5, #6ee7b7);
}

.project-thumb.violet {
    background: linear-gradient(135deg, #ede9fe, #c4b5fd);
}

.project-thumb.pink {
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
}

.project-thumb.orange {
    background: linear-gradient(135deg, #ffedd5, #fdba74);
}

/* ===== HOVER ===== */

.project-card:hover .project-thumb img,
.project-card:hover .project-fallback {
    transform: scale(1.05);
}

.privacy-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    text-align: center;
}

.privacy-hero .page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.privacy-hero .page-subtitle {
    font-size: 18px;
    color: #555;
}

.privacy-content {
    padding: 60px 20px;
}

.privacy-content .container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.privacy-content h2 {
    margin-top: 40px;
    font-size: 26px;
}











