/* Khung chính với Gradient */
.let-brand-wrapper {
    background: radial-gradient(circle at top left, #1B2A4E 0%, #142343 100%);
    border-radius: 24px;
    padding: 25px;
    color: var(--color-white);
}

.let-brand-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.let-brand-left {
    flex: 3;
}

.let-brand-sub {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-silver-blue);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.icon-water {
    margin-right: 8px;
    filter: drop-shadow(0 0 5px #007bff);
}

.let-brand-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    text-transform: uppercase;
}

.let-brand-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
	margin-bottom: 0;
    max-width: 90%;
}

/* Cột nút bấm */
.let-brand-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Nút bấm cũng có gradient nhẹ */
.let-brand-btn {
    background: var(--color-teal);
    color: var(--color-white);
    text-decoration: none !important;
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.let-brand-btn:hover {
	background: var(--color-indigo);
	color: var(--color-white);
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.arrow {
    margin-left: 10px;
    font-size: 18px;
}

/* Tương thích điện thoại (Responsive) */
@media (max-width: 1024px) {
    .let-brand-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .let-brand-flex {
        flex-direction: column;
    }
	
    .let-brand-left {
        flex: unset;
    }
	
    .let-brand-text {
        max-width: 100%;
    }
	
    .let-brand-right {
        justify-content: center;
        width: 100%;
    }
	
    .let-brand-sub {
        justify-content: center;
    }
	
    .let-brand-btn {
        width: 100%;
        justify-content: center;
    }
}