/* --- CÀI ĐẶT CHUNG --- */
:root {
    --primary-black: #111111;
    --primary-yellow: #FBBC05;
    --primary-orange: #ff6600;
    --text-color: #333333;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #f4f7f6;
}

/* --- HEADER QUY MÔ --- */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO --- */
.logo {
    text-decoration: none;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-yellow);
    display: flex;
    align-items: flex-start;
    letter-spacing: -1px;
}

.logo__highlight {
    color: var(--primary-yellow);
}

.logo__icon {
    color: var(--primary-yellow);
    font-size: 22px;
    margin-left: 4px;
    margin-top: 4px;
}

/* --- NAVBAR (MENU) --- */
.navbar__list {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar__link {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar__link:hover {
    color: var(--primary-orange);
}

.navbar__arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* --- MEGA DROPDOWN MENU (2 CỘT) --- */
.dropdown-parent {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -50px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 450px;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.dropdown-parent:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-parent:hover .navbar__arrow {
    transform: rotate(180deg);
}

/* --- CỘT & TIÊU ĐỀ TRONG DROPDOWN --- */
.dropdown__column {
    list-style: none;
    flex: 1;
}

.dropdown__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #f4f7f6;
    pointer-events: none;
}

.dropdown__column a {
    text-decoration: none;
    color: var(--text-color);
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.dropdown__column a:hover {
    background-color: #fff5f0;
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* --- ICON TRONG DROPDOWN --- */
.dropdown__icon {
    font-size: 18px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown__icon--fb { color: #1877F2; }
.dropdown__icon--gg { color: #DB4437; }
.dropdown__icon--gear { color: #555555; }

.dropdown__icon--tt { 
    color: #000000; 
    text-shadow: 1.5px 1.5px 0 #FF00E7, -1.5px -1.5px 0 #0078FF; 
}

/* --- ICON TÙY CHỈNH (DESKTOP + SMARTPHONE) --- */
.custom-icon--design {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.custom-icon--design .fa-desktop {
    position: absolute;
    font-size: 18px;
    color: #555555;
}

.custom-icon--design .fa-mobile-screen-button {
    position: absolute;
    font-size: 10px;
    color: var(--primary-black);
    bottom: -3px;
    right: -3px;
    background-color: #ffffff;
    border-radius: 2px;
    padding: 1px;
    z-index: 1;
}

.dropdown__column a:hover .dropdown__icon {
    color: var(--primary-orange);
    text-shadow: none;
}

.dropdown__link--custom-icon:hover .custom-icon--design .fa-desktop,
.dropdown__link--custom-icon:hover .custom-icon--design .fa-mobile-screen-button {
    color: var(--primary-orange);
}

/* --- NÚT CTA (TƯ VẤN NGAY) --- */
.cta-button {
    background-color: var(--primary-orange);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.cta-button:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

/* --- RESPONSIVE CƠ BẢN (Cho Mobile) --- */
@media (max-width: 900px) {
    .navbar {
        display: none;
    }
    
    .cta-button__text {
        display: none;
    }
    
    .cta-button {
        padding: 12px;
        border-radius: 50%;
    }
}
/* --- BIẾN MÀU SẮC CHO HERO --- */
:root {
    --hero-bg: #000000;
    --text-white: #ffffff;
    --brand-tiktok: #00f2ea;
    --brand-tiktok-accent: #ff0050;
    --btn-blue: #00d2ff;
    --btn-pink: #ff0051;
}

/* --- HERO SECTION STYLES --- */
.hero {
    background-color: var(--hero-bg);
    color: var(--text-white);
    position: relative;
    padding: 80px 0 150px 0; /* Padding trên/dưới lớn để tạo không gian cho shape divider */
    overflow: hidden;
}

.hero__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NỘI DUNG VĂN BẢN (CĂN LỀ TRÁI ĐỒNG NHẤT) --- */
.hero__content {
    flex: 1;
    max-width: 550px;
    padding-right: 50px;
    display: flex; /* Đảm bảo các phần tử bên trong xếp dọc */
    flex-direction: column; /* Đảm bảo các phần tử bên trong xếp dọc */
    align-items: flex-start; /* Căn lề trái đồng nhất cho tất cả nội dung văn bản */
}

.hero__sub-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-align: left; /* Đảm bảo văn bản tiêu đề căn trái */
}

.highlight-brand {
    color: var(--primary-yellow); /* Sử dụng màu vàng thương hiệu cho TIKTOK */
}

/* --- DANH SÁCH TÍNH NĂNG --- */
.hero__features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
    display: flex; /* Đảm bảo các phần tử bên trong xếp dọc */
    flex-direction: column; /* Đảm bảo các phần tử bên trong xếp dọc */
    align-items: flex-start; /* Căn lề trái đồng nhất cho các mục danh sách */
}

.hero__features li {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-align: left; /* Đảm bảo văn bản danh sách căn trái */
}

.hero__features-icon {
    font-size: 14px;
    margin-right: 12px;
    opacity: 0.8;
}

/* --- NÚT ĐĂNG KÝ (GRADIENT) --- */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--btn-blue), var(--btn-pink));
    box-shadow: 0 4px 15px rgba(255, 0, 81, 0.4);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 81, 0.5);
    background: linear-gradient(135deg, var(--btn-pink), var(--btn-blue)); /* Đảo màu gradient khi hover */
}

/* --- HÌNH ẢNH & HIỆU ỨNG --- */
.hero__image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero__phone {
    width: 100%;
    height: auto;
    display: block;
}

/* Hiệu ứng ánh sáng & Biểu tượng floating */
.hero__light {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero__light--blue {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 210, 255, 0.4);
    bottom: -100px;
    left: -50px;
}

.hero__light--pink {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 0, 81, 0.4);
    top: -50px;
    right: -50px;
}

.hero__icon-floating {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    z-index: 1;
}

.hero__icon-plus {
    top: 20%;
    left: 10%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.hero__icon-heart {
    bottom: 30%;
    right: 15%;
    color: rgba(255, 0, 81, 0.5);
}

.hero__icon-dots {
    bottom: 10%;
    right: 30%;
}

/* --- SHAPE DIVIDER TRẮNG (CĂN LỀ TRÁI CÁC PHẦN TỬ LIÊN QUAN) --- */
.hero__shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero__shape-divider svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 120px;
}

/* --- RESPONSIVE CHO HERO (MOBILE & TABLET) --- */
@media (max-width: 900px) {
    .hero {
        padding: 60px 0 100px 0;
    }
    
    .hero__wrapper {
        flex-direction: column-reverse; /* Xếp dọc, hình ảnh lên trên */
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
        padding-right: 0;
        margin-top: 50px;
        align-items: center; /* Căn giữa nội dung văn bản trên mobile */
    }

    .hero__title {
        font-size: 38px;
        text-align: center; /* Đảm bảo văn bản tiêu đề căn giữa trên mobile */
    }

    .hero__sub-title {
        text-align: center; /* Đảm bảo văn bản tiêu đề căn giữa trên mobile */
    }

    .hero__features {
        align-items: center; /* Căn giữa các mục danh sách trên mobile */
    }

    .hero__features li {
        font-size: 16px;
        text-align: center; /* Đảm bảo văn bản danh sách căn giữa trên mobile */
    }

    .hero__image {
        max-width: 350px;
    }
}
/* --- CẬP NHẬT BIẾN MÀU SẮC CHUẨN --- */
:root {
    --brand-blue: #4285F4;
    --brand-red: #EA4335;
    --brand-yellow: #FBBC05;
    --brand-green: #34A853;
    --tiktok-pink: #fe2c55;
    --bg-gray: #eaeaec;
}

/* --- SOLUTIONS SECTION --- */
.solutions {
    padding: 80px 0;
    background-color: #ffffff;
}

.solutions__wrapper {
    max-width: 1400px; /* Tăng từ 1200px lên 1400px để tạo độ thoáng */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Logos */
.solutions__header {
    text-align: center;
    margin-bottom: 40px;
}

.solutions__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.logo__widp {
    color: var(--brand-yellow); /* Luôn màu vàng theo yêu cầu */
}

.solutions__cross {
    font-size: 16px;
    color: #999;
}

.logo__tiktok {
    color: #000;
}

.solutions__title {
    font-size: 32px;
    color: var(--primary-black);
    font-weight: 700;
}

/* Tabs */
.solutions__tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    background-color: var(--bg-gray);
    color: #666;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--tiktok-pink);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(254, 44, 85, 0.3);
}

/* Tab Panes */
.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SLIDER & 3D EFFECT --- */
.slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.slider-arrow {
    background: none;
    border: none;
    color: var(--tiktok-pink);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 10px;
    flex-shrink: 0;
}

.slider-arrow:hover {
    transform: scale(1.2);
}

.slider-viewport {
    flex: 1;
    position: relative;
    perspective: 1500px;
    overflow: hidden;
    height: 480px; /* Giảm nhẹ chiều cao xuống 480px để kết hợp với chiều rộng tạo ra tỷ lệ ngang */
}
/* Slide Item */
.slide {
    display: none;
    width: 100%;
    height: 100%; /* Thêm dòng này để fix cứng chiều cao */
    align-items: stretch;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: flex;
    position: relative;
}

/* 3D Animation Classes */
.rotate-in-right { animation: rotateInRight 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.rotate-out-left { display: flex; animation: rotateOutLeft 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.rotate-in-left { animation: rotateInLeft 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.rotate-out-right { display: flex; animation: rotateOutRight 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

@keyframes rotateInRight {
    0% { transform: rotateY(90deg); opacity: 0; }
    100% { transform: rotateY(0deg); opacity: 1; }
}
@keyframes rotateOutLeft {
    0% { transform: rotateY(0deg); opacity: 1; }
    100% { transform: rotateY(-90deg); opacity: 0; }
}
@keyframes rotateInLeft {
    0% { transform: rotateY(-90deg); opacity: 0; }
    100% { transform: rotateY(0deg); opacity: 1; }
}
@keyframes rotateOutRight {
    0% { transform: rotateY(0deg); opacity: 1; }
    100% { transform: rotateY(90deg); opacity: 0; }
}

/* Slide Content Layout */
.slide__image {
    flex: 1.4; /* Tăng từ 1 lên 1.4 để chiếm nhiều diện tích chiều ngang hơn */
    background-color: var(--tiktok-pink);
    position: relative;
    padding: 0;
}

.slide__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
}

.slide__info {
   flex: 1; /* Giảm từ 1.2 xuống 1 để nhường không gian nằm ngang cho ảnh */
    padding: 40px 40px 40px 0; /* Tăng nhẹ padding để chữ không bị dính sát vào cạnh phải */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.slide__title {
    color: #e63946;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slide__desc {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.slide__features {
    list-style-position: inside;
    list-style-type: disc;
    padding: 0;
    text-align: left; /* Căn lề trái tự nhiên theo yêu cầu */
}

.slide__features li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #444;
}

/* Pagination Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--tiktok-pink);
    width: 20px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .slide.active { flex-direction: column; }
    .slide__info { padding: 20px; }
}
/* ============================================================
   CẬP NHẬT: ĐẨY ẢNH LÊN 30PX ĐỂ CẮT BỎ LOGO LỀ TRÊN
============================================================ */

/* 1. Đảm bảo khung chứa ảnh sẽ ẩn đi bất cứ phần nào tràn ra ngoài */
#tab-nhan-dien .slide__image {
    overflow: hidden !important;
}

/* 2. Tăng chiều cao và kéo ảnh lên trên 30px */
#tab-nhan-dien .slide__image img {
    height: calc(100% + 30px) !important; /* Chủ động cộng thêm 30px vào chiều cao */
    top: -30px !important;                /* Đẩy ngược ảnh lên trên 30px */
    object-fit: cover !important;
    object-position: center !important;   /* Đưa tâm ảnh về lại giữa để bố cục cân đối */
}
/* --- SERVICES GRID SECTION --- */
.services-grid {
    background-color: #f2f2f9; /* Màu nền xám nhạt làm nổi bật card trắng */
    padding-top: 25px; /* Lề trên đã được giảm nhỏ gọn theo yêu cầu */
    padding-bottom: 100px;
}

.services-grid__wrapper {
    max-width: 1200px; /* Căn giữa đồng bộ với layout chung */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TIÊU ĐỀ SECTION --- */
.services-grid__header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid__header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.4;
}

/* --- LƯỚI 2x2 (GRID ROWS) --- */
.grid-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.grid-row:last-child {
    margin-bottom: 0;
}

/* Class đảo ngược vị trí cho hàng số 2 */
.grid-row--reverse {
    flex-direction: row-reverse;
}

.grid-col {
    flex: 1; /* Chia đều 50% - 50% cho ảnh và chữ */
}

/* --- XỬ LÝ HÌNH ẢNH --- */
.grid-col--image {
    position: relative;
    /* Đã xóa border-radius, overflow và box-shadow để loại bỏ khung chữ nhật */
}

.grid-col--image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Chuyển từ cover sang contain để ảnh PNG hiển thị trọn vẹn, không bị cắt xén */
    
    /* MẸO: Nếu bạn muốn ảnh PNG có bóng đổ bám chuẩn theo viền của vật thể thật, hãy bỏ dấu comment ở dòng dưới đây */
    /* filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1)); */
}

/* --- XỬ LÝ VĂN BẢN (CĂN TRÁI ĐỒNG BỘ) --- */
.grid-col--text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ép toàn bộ khối bám sát lề trái */
    text-align: left;        /* Đảm bảo chữ tự nhiên, không bị nhảy căn giữa */
}

.sub-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-red); /* Có thể đổi sang --tiktok-pink nếu muốn */
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* --- DANH SÁCH TÍNH NĂNG KÈM ICON --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list li {
    display: flex;
    align-items: flex-start; /* Icon và chữ căn đều ở đỉnh */
    gap: 15px;
}

.feature-icon {
    font-size: 20px;
    color: #888888;
    margin-top: 4px; /* Hạ nhẹ icon xuống để thẳng hàng với dòng chữ đầu tiên */
    flex-shrink: 0;  /* Ngăn icon bị bóp méo khi chữ quá dài */
}

.feature-list p {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}

/* --- RESPONSIVE CHO MOBILE & TABLET --- */
@media (max-width: 900px) {
    .grid-row, 
    .grid-row--reverse {
        flex-direction: column; /* Trên điện thoại, xếp dọc lại tất cả */
        gap: 30px;
        margin-bottom: 60px;
    }

    .services-grid__header h2 {
        font-size: 26px;
    }

    .heading {
        font-size: 24px;
    }
}
/* --- ADVANTAGES SECTION --- */
.advantages {
    background-color: #f8fafc; /* Nền xanh xám cực nhạt để tách biệt với nền trắng phía trên */
    padding: 80px 0 120px 0;
}

.advantages__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER & TIÊU ĐỀ --- */
.advantages__header {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Giữ khung ở giữa màn hình */
}

.advantages__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 25px;
}

.advantages__desc {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    max-width: 800px;
    /* Ép căn lề trái tự nhiên cho đoạn văn bản mô tả tối ưu */
    text-align: left; 
    margin: 0;
}

/* --- CIRCULAR UI --- */
.advantages__circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-border {
    width: 650px;
    height: 650px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- CÁC NÚT ICON XUNG QUANH --- */
.circle-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 2;
    transition: transform 0.3s ease;
}

.circle-icon:hover {
    transform: scale(1.15);
}

/* Tọa độ đặt 4 Icon */
.icon-top-left {
    background-color: #1e293b;
    top: 60px;
    left: 100px;
}

.icon-top-right {
    background-color: #1e293b;
    top: 60px;
    right: 100px;
}

.icon-bottom-left {
    background-color: #6366f1; /* Icon tím nhạt */
    bottom: 100px;
    left: 30px;
}

.icon-bottom-right {
    background-color: #1e293b;
    bottom: 100px;
    right: 30px;
}

/* --- KHỐI NỘI DUNG TRUNG TÂM (HÌNH TRÒN ĐEN) --- */
.circle-inner {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    /* Ghi chú: Lưu một tấm ảnh team đang làm việc với tên team-expert.jpg vào thư mục assets nhé */
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./assets/team-expert.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.circle-inner__content {
    max-width: 360px;
}

.circle-inner__heading {
    color: var(--primary-yellow);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.circle-inner__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .advantages__desc {
        text-align: center; /* Trở lại center trên mobile cho đẹp nếu bị vỡ dòng */
    }

    .circle-border {
        width: 350px;
        height: 350px;
        border: none; /* Ẩn viền ngoài để màn hình nhỏ không bị rườm rà */
    }
    
    .circle-icon {
        display: none; /* Ẩn các icon con */
    }

    .circle-inner {
        width: 340px;
        height: 340px;
        padding: 30px;
    }

    .circle-inner__content {
        max-width: 280px;
    }
    
    .circle-inner__heading {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .circle-inner__text {
        font-size: 14px;
    }
}
/* --- BIẾN MÀU SẮC RIÊNG CHO WORKFLOW --- */
:root {
    --wf-pink: #fd305b; /* Màu hồng neon */
    --wf-cyan: #00e0d6; /* Màu xanh cyan */
    --wf-bg: #000000;   /* Nền đen tuyền */
}

/* --- WORKFLOW SECTION --- */
.workflow {
    background-color: var(--wf-bg);
    padding: 80px 0 120px;
    color: #ffffff;
}

.workflow__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.workflow__title {
    text-align: center;
    color: var(--wf-pink);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 80px;
}

/* --- GRID LAYOUT --- */
.workflow__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px; /* Khoảng cách dọc lớn (70px) để không bị đè số và icon */
}

/* --- THIẾT KẾ CARD --- */
.workflow-card {
    background-color: transparent;
    border-radius: 10px;
    padding: 45px 25px 45px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Các loại viền */
.border-pink { border: 1px solid var(--wf-pink); }
.border-cyan { border: 1px solid var(--wf-cyan); }

/* --- ICON TRÊN CÙNG (Cắt viền) --- */
.workflow-card__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #000000; /* Màu icon đen nổi bật trên nền hộp màu */
}

.bg-pink { background-color: var(--wf-pink); }
.bg-cyan { background-color: var(--wf-cyan); }

/* --- NỘI DUNG CHỮ TRONG CARD --- */
.workflow-card__heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.workflow-card__desc {
    font-size: 15px;
    color: #d1d5db; /* Màu xám nhạt dễ đọc trên nền đen */
    line-height: 1.6;
    margin: 0;
}

/* --- SỐ THỨ TỰ BÊN DƯỚI (Cắt viền) --- */
.workflow-card__number {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 48px;
    height: 48px;
    background-color: var(--wf-bg); /* Nền đen để che đi viền hộp phía dưới */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
}

.border-pink-text { 
    border: 2px solid var(--wf-pink); 
    color: #ffffff; 
}

.border-cyan-text { 
    border: 2px solid var(--wf-cyan); 
    color: #ffffff; 
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .workflow__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 40px;
    }
}

@media (max-width: 600px) {
    .workflow__grid {
        grid-template-columns: 1fr;
    }
    .workflow__title {
        font-size: 32px;
    }
}
/* --- CTA CONTACT SECTION --- */
.cta-contact {
    /* Sử dụng dải gradient màu kem nhạt mô phỏng nền lượn sóng */
    background: linear-gradient(135deg, #fffcf9 0%, #fff0e6 100%);
    padding-top: 20px; /* Lề trên được ép nhỏ lại để layout chặt chẽ hơn */
    padding-bottom: 80px;
    overflow: hidden;
}

.cta-contact__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- CỘT TRÁI (HÌNH ẢNH CÓ BO TRÒN) --- */
.cta-contact__image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-circle-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%; /* Tự động bo tròn ảnh */
    border: 12px solid #ffffff; /* Viền trắng bao quanh */
    box-shadow: -15px 15px 40px rgba(0,0,0,0.08); /* Bóng đổ tạo chiều sâu */
    background-color: #ffffff;
}

.image-circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Chấm xanh trang trí phía dưới */
.decor-dot {
    position: absolute;
    border-radius: 50%;
    background-color: #8da4be;
}
.decor-dot--1 {
    width: 22px;
    height: 22px;
    bottom: 10px;
    left: 40px;
}
.decor-dot--2 {
    width: 14px;
    height: 14px;
    bottom: -15px;
    left: 80px;
}

/* --- CỘT PHẢI (NỘI DUNG) --- */
.cta-contact__text-col {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-contact__heading {
    font-size: 26px;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.highlight-orange {
    color: #ff6600; /* Màu cam chuẩn theo thiết kế */
    font-weight: 800;
}

.cta-contact__subheading {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-black);
    margin-bottom: 25px;
    line-height: 1.4;
}

.cta-contact__desc {
    font-size: 18px;
    color: #555555;
    margin-bottom: 25px;
}

/* Khu vực hiển thị Logo WIDP */
.cta-contact__logo {
    font-size: 52px;
    font-weight: 900;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.cta-contact__logo .logo__icon {
    font-size: 30px;
    color: var(--primary-yellow);
    margin-top: 8px; /* Căn chỉnh icon bằng với chữ */
}

/* --- NÚT LIÊN HỆ & HOTLINE --- */
.cta-contact__action {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-gradient-pink {
    background: linear-gradient(90deg, #ff3366, #ff0055);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 0, 85, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 85, 0.4);
}

.hotline-box {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.hotline-label {
    font-size: 14px;
    color: #555555;
    font-weight: 600;
    letter-spacing: 1px;
}

.hotline-number {
    font-size: 26px;
    font-weight: 800;
    color: #ff6600;
}

/* --- RESPONSIVE TỐI ƯU MOBILE --- */
@media (max-width: 992px) {
    .cta-contact__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .image-circle-wrapper {
        width: 320px;
        height: 320px;
    }
    .cta-contact__action {
        flex-direction: column;
        gap: 20px;
    }
    .hotline-box {
        text-align: center;
    }
}
/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: var(--white);
    padding: 60px 20px;
    border-top: 1px solid #f1f1f1;
}

.footer__container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__brand-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__logo {
    color: var(--primary-yellow);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
}

.footer__details p {
    color: var(--primary-black);
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer__links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.footer__links a {
    text-decoration: none;
    color: var(--primary-black);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .footer__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer__links {
        flex-direction: column;
        gap: 15px;
    }
}